Skip to content

Commit 8ee5d9e

Browse files
committed
fix: fix the bug cache error
1 parent 8fc96b2 commit 8ee5d9e

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -20,27 +20,11 @@ jobs:
2020
- name: Checkout repository
2121
uses: actions/checkout@v4
2222

23-
- name: Cache reference
24-
id: cache-ref
25-
uses: actions/cache@v4
26-
with:
27-
path: |
28-
workflow/references/gene_annotations_113.csv
29-
workflow/references/transcript_annotations_113.csv
30-
workflow/references/transcriptome.idx
31-
key: ref-v1-${{ hashFiles('init.sh') }}
32-
restore-keys: |
33-
ref-v1-
34-
3523
- name: Run init.sh to build references
36-
if: steps.cache-ref.outputs.cache-hit != 'true'
3724
run: |
3825
chmod +x init.sh
3926
./init.sh
4027
41-
- name: Debug references folder
42-
run: ls -lh workflow/references || true
43-
4428
- name: Show system resources
4529
run: |
4630
echo "===== CPU and memory ====="
@@ -69,15 +53,12 @@ jobs:
6953
7054
echo "===== Snakemake Version ====="
7155
snakemake --version
72-
7356
echo
7457
echo "===== Detailed Summary ====="
7558
snakemake --detailed-summary --configfile ../.test/config/config.yaml
76-
7759
echo
7860
echo "===== Conda Environments Used ====="
7961
find .snakemake/conda -maxdepth 1 -type d -print || true
80-
8162
echo
8263
echo "===== Conda Environment Package Versions ====="
8364
for env in .snakemake/conda/*; do

0 commit comments

Comments
 (0)