-
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.
def files, bash scipts for containers, testing yaml
- Loading branch information
1 parent
bad244e
commit 30b0f89
Showing
7 changed files
with
148 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: CI tests for download and calculate with Apptainer | ||
|
||
on: | ||
push: | ||
branches: | ||
- [main, dev] | ||
pull_request: | ||
branches: | ||
- [main, dev] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Apptainer dependencies | ||
run: | | ||
sudo apt-get update && sudo apt-get install -y \ | ||
libseccomp-dev \ | ||
squashfs-tools \ | ||
cryptsetup \ | ||
wget | ||
- name: Install Apptainer | ||
run: | | ||
wget https://github.com/apptainer/apptainer/releases/download/v1.1.0/apptainer-1.1.0.tar.gz | ||
tar -xvf apptainer-1.1.0.tar.gz | ||
cd apptainer-1.1.0 | ||
./mconfig && make -C builddir && sudo make -C builddir install | ||
- name: Restore .sif file from cache | ||
id: cache-sif | ||
uses: actions/cache@v3 | ||
with: | ||
path: beethoven_dl_calc.sif | ||
key: sif-cache-${{ hashFiles('../../containers/beethoven_dl_calc.def') }} | ||
restore-keys: sif-cache- | ||
|
||
- name: Build the Apptainer container (if cache miss) | ||
if: steps.cache-sif.outputs.cache-hit != 'true' | ||
run: | | ||
apptainer build my_container.sif path/to/Singularity.def | ||
- name: Cache the .sif file | ||
if: steps.cache-sif.outputs.cache-hit != 'true' | ||
uses: actions/cache@v3 | ||
with: | ||
path: beethoven_dl_calc.sif | ||
key: sif-cache-${{ hashFiles('../../containers/beethoven_dl_calc.def') }} | ||
|
||
- name: Create run_dl_calc_tests.R dynamically | ||
run: | | ||
echo 'testthat::test_file("/mnt/tests/testthat/test_download.R")' > tests/testthat/run_dl_calc_tests.R | ||
echo 'testthat::test_file("/mnt/tests/testthat/test_calculate.R")' >> tests/testthat/run_dl_calc_tests.R | ||
- name: Run tests inside the container | ||
run: | | ||
apptainer exec \ | ||
--bind $PWD/inst:/pipeline \ | ||
--bind $PWD/input:/input \ | ||
--bind $PWD/_targets:/opt/_targets \ | ||
--bind $PWD:/mnt \ | ||
Rscript mnt/tests/testhat/run_dl_calc_tests.R |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
|
||
# usage: build_apptainer_image.sh [full file path] | ||
# where full file path ends with .sif, with full directory path to save the image | ||
# after the image is built, group write/execution privileges are given | ||
|
||
# Recommended to run this script interactively via `sh build_dl_calc.sh` | ||
apptainer build --fakeroot beethoven_dl_calc.sif beethoven_dl_calc.def |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/bash | ||
#SBATCH --job-name=beethoven_001 | ||
#SBATCH --partition=geo | ||
#SBATCH --mem=128G | ||
#SBATCH --cpus-per-task=4 | ||
#SBATCH --ntasks=16 | ||
#SBATCH --output=slurm_messages/slurm-%j.out | ||
#SBATCH --error=slurm_messages/slurm-%j.err | ||
#SBATCH --mail-user=kyle.messier@nih.gov | ||
#SBATCH --mail-type=ALL | ||
|
||
|
||
|
||
|
||
apptainer exec \ | ||
--bind $PWD/inst:/pipeline \ | ||
--bind $PWD/input:/input \ | ||
--bind $PWD/_targets:/opt/_targets \ | ||
--bind $PWD:/mnt \ | ||
beethoven_dl_calc.sif \ | ||
Rscript /mnt/run.R | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/bash | ||
#SBATCH --job-name=dl_calc_tests | ||
#SBATCH --partition=geo | ||
#SBATCH --mem=128G | ||
#SBATCH --cpus-per-task=4 | ||
#SBATCH --ntasks=16 | ||
#SBATCH --output=slurm_messages/slurm-%j.out | ||
#SBATCH --error=slurm_messages/slurm-%j.err | ||
#SBATCH --mail-user=kyle.messier@nih.gov | ||
#SBATCH --mail-type=ALL | ||
|
||
|
||
|
||
|
||
apptainer exec \ | ||
--bind $PWD/../inst:/pipeline \ | ||
--bind $PWD/../input:/input \ | ||
--bind $PWD/../_targets:/opt/_targets \ | ||
--bind $PWD/..:/mnt \ | ||
beethoven_dl_calc.sif \ | ||
Rscript /mnt/tests/testthat/test_download.R | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
################################################################################ | ||
##### unit and integration tests for covariate calculations | ||
##### Currently arbitrary placeholders | ||
##### | ||
|
||
################################################################################ | ||
##### | ||
testthat::test_that("calculate targets work", { | ||
|
||
a <- 1 | ||
testthat::expect_equal(a, 1) | ||
|
||
}) |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
################################################################################ | ||
##### unit and integration tests for data download | ||
##### Currently arbitrary placeholders | ||
##### | ||
|
||
################################################################################ | ||
##### loadargs | ||
testthat::test_that("download targets work", { | ||
|
||
a <- 1 | ||
testthat::expect_equal(a, 1) | ||
|
||
}) |