From ff58590c4fbb4054a03de66704984d2d5c75f6c6 Mon Sep 17 00:00:00 2001 From: Fabio Seel Date: Thu, 10 Oct 2024 16:09:32 +0200 Subject: [PATCH] fix: changed sif file path --- .github/workflows/code_check.yml | 2 +- .github/workflows/config_scan.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code_check.yml b/.github/workflows/code_check.yml index 3c61a875..329612c7 100644 --- a/.github/workflows/code_check.yml +++ b/.github/workflows/code_check.yml @@ -41,5 +41,5 @@ jobs: run: git fetch --all - name: Run Pylint run: | - singularity exec ~/singularity_images/retinal-rl_singularity-image-latest.sif \ + singularity exec ${{ env.sif_file }} \ pylint $(git diff --name-only origin/master...HEAD -- '*.py') diff --git a/.github/workflows/config_scan.yml b/.github/workflows/config_scan.yml index 2978c3cc..45afddc1 100644 --- a/.github/workflows/config_scan.yml +++ b/.github/workflows/config_scan.yml @@ -29,5 +29,5 @@ jobs: - name: Scan classification config run: | cp -r resources/config_templates/* config/ - singularity exec ~/singularity_images/retinal-rl_singularity-image-latest.sif \ + singularity exec ${{ env.sif_file }} \ python main.py -m +experiment=cifar10-class-recon command=scan system.device=cpu \ No newline at end of file