-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #647 from lukemartinlogan/dev
Unit tests + ctests
- Loading branch information
Showing
142 changed files
with
8,276 additions
and
9,717 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ class HermesShm(CMakePackage): | |
url = "https://github.com/lukemartinlogan/hermes_shm/archive/refs/tags/v1.0.0.tar.gz" | ||
|
||
version('master', branch='master') | ||
version("1.1.0", sha256="080d5361cff22794b670e4544c532926ca8b6d6ec695af25596efe035bfffea5") | ||
version("1.0.0", sha256="a79f01d531ce89985ad59a2f62b41d74c2385e48d929e2f4ad895ae34137573b") | ||
|
||
variant('mpiio', default=True, description='Enable MPI I/O adapter') | ||
|
@@ -15,6 +16,7 @@ class HermesShm(CMakePackage): | |
variant('only_verbs', default=False, description='Only verbs') | ||
variant('debug', default=False, description='Build shared libraries') | ||
variant('zmq', default=False, description='Build ZeroMQ tests') | ||
variant('adios', default=False, description='Build Adios tests') | ||
|
||
depends_on('[email protected]') | ||
depends_on('[email protected]') | ||
|
@@ -30,6 +32,7 @@ class HermesShm(CMakePackage): | |
when='+only_verbs') | ||
depends_on('libzmq', '+zmq') | ||
depends_on('[email protected]', when='+vfd') | ||
depends_on('adios2', when='+adios') | ||
|
||
def cmake_args(self): | ||
args = [] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ set -o pipefail | |
# Change this especially when your $HOME doesn't have enough disk space. | ||
INSTALL_DIR="${HOME}" | ||
SPACK_DIR=${INSTALL_DIR}/spack | ||
SPACK_VERSION=0.18.1 | ||
SPACK_VERSION=0.20.2 | ||
|
||
echo "Installing dependencies at ${INSTALL_DIR}" | ||
mkdir -p ${INSTALL_DIR} | ||
|
@@ -29,6 +29,11 @@ set +x | |
. ${SPACK_DIR}/share/spack/setup-env.sh | ||
set -x | ||
|
||
# Install jarvis-cd | ||
git clone https://github.com/grc-iit/jarvis-cd.git | ||
cd jarvis-cd | ||
pip install -e . -r requirements.txt | ||
|
||
# This will allow Spack to skip building some packages that are directly | ||
# available from the system. For example, autoconf, cmake, m4, etc. | ||
# Modify ci/pckages.yaml to skip building compilers or build tools via Spack. | ||
|
@@ -38,4 +43,4 @@ cp ci/packages.yaml ${SPACK_DIR}/etc/spack/packages.yaml | |
# Install hermes_shm (needed for dependencies) | ||
# | ||
spack repo add ci/hermes | ||
spack install hermes_shm | ||
spack install hermes_shm@master+vfd+mpiio^[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.