Skip to content

Commit

Permalink
shrug
Browse files Browse the repository at this point in the history
  • Loading branch information
tedil committed Aug 7, 2024
1 parent 2968d86 commit 1cf57b7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ defaults:

env:
MEHARI_VERSION: "0.26.1"
SNAKEMAKE_OUTPUT_CACHE: "~/mehari-data-tx/cache"
SNAKEMAKE_OUTPUT_CACHE: "/github/workspace/snakemake_cache"

jobs:
build_data_release:
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
id: cache-snakemake
uses: actions/cache@v4
with:
path: ${{ env.SNAKEMAKE_OUTPUT_CACHE }}
path: /github/workspace/snakemake_cache
key: ${{ matrix.genome_release }}-${{ matrix.source }}

- name: Run data build workflow
Expand All @@ -55,7 +55,7 @@ jobs:
directory: mehari-data-tx
snakefile: workflow/Snakefile
stagein: |
mkdir -p ${{ env.SNAKEMAKE_OUTPUT_CACHE }}
mkdir -p /github/workspace/snakemake_cache
args: "--configfile config/config.yaml --sdm conda --show-failed-logs --cores 4 --jobs 4 --conda-cleanup-pkgs cache results/${{ matrix.genome_release }}-${{ matrix.source }}/mehari/seqrepo/report/mehari_db_check.txt"
show-disk-usage-on-error: true

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ defaults:

env:
MEHARI_VERSION: "0.26.1"
SNAKEMAKE_OUTPUT_CACHE: "~/mehari-data-tx/cache"
SNAKEMAKE_OUTPUT_CACHE: "/github/workspace/snakemake_cache"

jobs:
release-please:
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
id: cache-snakemake
uses: actions/cache@v4
with:
path: ${{ env.SNAKEMAKE_OUTPUT_CACHE }}
path: /github/workspace/snakemake_cache
key: ${{ matrix.genome_release }}-${{ matrix.source }}

- name: Run data build workflow
Expand All @@ -76,7 +76,7 @@ jobs:
directory: mehari-data-tx
snakefile: workflow/Snakefile
stagein: |
mkdir -p ${{ env.SNAKEMAKE_OUTPUT_CACHE }}
mkdir -p /github/workspace/snakemake_cache
args: "--configfile config/config.yaml --sdm conda --show-failed-logs --cores 4 --jobs 4 --conda-cleanup-pkgs cache results/${{ matrix.genome_release }}-${{ matrix.source }}/mehari/seqrepo/report/mehari_db_check.txt"
show-disk-usage-on-error: true

Expand Down

0 comments on commit 1cf57b7

Please sign in to comment.