This repository was archived by the owner on Aug 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
6 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
#!/bin/sh -- | ||
# This will install the Singularity container version of the swiftest_driver in place of the native compiled version into ../bin. | ||
# In order to use the executable script, the SWIFTEST_SIF environment variable must be set to point to the location of swiftest_driver.sif, which requires this script to be called via source: | ||
# In order to use the executable script, the SWIFTEST_SIF environment variable must be set to point to the location of swiftest.sif, which requires this script to be called via source: | ||
# $ . ./install.sh | ||
# | ||
tag=${1:-latest} | ||
echo "Installing swiftest_driver.sif Singularity container and executable script from swiftest_driver:${tag} Docker container" | ||
echo "Installing swiftest_driver.sif Singularity container and executable script from swiftest:${tag} Docker container" | ||
apptainer pull --force swiftest.sif docker://daminton/swiftest:${tag} | ||
cp -rf bin/swiftest_driver ../bin/ | ||
cp -rf bin/swiftest_python ../bin/ | ||
source ./setenv.sh |
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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
#!/bin/sh -- | ||
# This will install the Singularity container version of the swiftest_driver in place of the native compiled version into ../bin. | ||
# In order to use the executable script, the SWIFTEST_SIF environment variable must be set to point to the location of swiftest_driver.sif, which requires this script to be called via source: | ||
# In order to use the executable script, the SWIFTEST_SIF environment variable must be set to point to the location of swiftest.sif, which requires this script to be called via source: | ||
# $ . ./install.sh | ||
# | ||
tag=${1:-latest} | ||
echo "Installing swiftest_driver.sif Singularity container and executable script from swiftest_driver:${tag} Docker container" | ||
echo "Installing swiftest_driver.sif Singularity container and executable script from swiftest:${tag} Docker container" | ||
singularity pull --force swiftest.sif docker://daminton/swiftest:${tag} | ||
cp -rf bin/swiftest_driver ../bin/ | ||
cp -rf bin/swiftest_python ../bin/ | ||
source ./setenv.sh |