From 99fff8186d25eb5b948751a9bd517bf18513bfbe Mon Sep 17 00:00:00 2001 From: Guoying Qi <729395+gq1@users.noreply.github.com> Date: Tue, 4 Jun 2024 17:28:28 +0100 Subject: [PATCH 1/3] disable singularity cache --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ba25e9..c3e1a75 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,6 +4,7 @@ on: push: branches: - dev + - testing-sif pull_request: release: types: [published] @@ -12,6 +13,7 @@ env: NXF_ANSI_LOG: false NXF_SINGULARITY_CACHEDIR: ${{ github.workspace }}/.singularity NXF_SINGULARITY_LIBRARYDIR: ${{ github.workspace }}/.singularity + SINGULARITY_DISABLE_CACHE: yes concurrency: group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}" From 3e8f8eebf252b629b33891df1ab9e89c9cbef978 Mon Sep 17 00:00:00 2001 From: Guoying Qi <729395+gq1@users.noreply.github.com> Date: Tue, 4 Jun 2024 17:40:57 +0100 Subject: [PATCH 2/3] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c3e1a75..db325b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ env: NXF_ANSI_LOG: false NXF_SINGULARITY_CACHEDIR: ${{ github.workspace }}/.singularity NXF_SINGULARITY_LIBRARYDIR: ${{ github.workspace }}/.singularity - SINGULARITY_DISABLE_CACHE: yes + SINGULARITY_DISABLE_CACHE: true concurrency: group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}" From 5f50e7960216d1a7935f9217f03528cd2d8ac766 Mon Sep 17 00:00:00 2001 From: Guoying Qi <729395+gq1@users.noreply.github.com> Date: Tue, 4 Jun 2024 19:10:10 +0100 Subject: [PATCH 3/3] remove the test branch in ci --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db325b6..845d853 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,6 @@ on: push: branches: - dev - - testing-sif pull_request: release: types: [published]