-
Notifications
You must be signed in to change notification settings - Fork 47
106 lines (95 loc) · 3.14 KB
/
main.yml
File metadata and controls
106 lines (95 loc) · 3.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
name: Tests
on:
push:
branches: [ master ]
pull_request:
branches-ignore: []
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Testing:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
case:
- name: local input (dryrun)
args: >-
--configfile .test/config-simple/config.yaml
--show-failed-logs -j 10 --conda-cleanup-pkgs cache --dryrun
report: false
cleanup: false
- name: local input
args: >-
--configfile .test/config-simple/config.yaml
--show-failed-logs -j 10 --conda-cleanup-pkgs cache
report: true
cleanup: false
- name: testcase generation
args: >-
results/testcases/one/freebayes/IX:314200 --configfile .test/config-simple/config.yaml
report: false
cleanup: false
- name: target regions
args: >-
--configfile .test/config-target-regions/config.yaml
report: true
cleanup: false
- name: target regions, multiple BEDs
args: >-
--configfile .test/config-target-regions/config_multiple_beds.yaml
report: true
cleanup: false
- name: no candidate filtering
args: >-
--configfile .test/config-no-candidate-filtering/config.yaml
report: true
cleanup: false
- name: primers
args: >-
--configfile .test/config_primers/config.yaml
report: true
cleanup: false
- name: sra download
args: >-
--configfile .test/config-sra/config.yaml
report: true
cleanup: false
name: test ${{ matrix.case.name }}
steps:
- name: update apt
run: sudo apt-get update
- name: Free Disk Space (Ubuntu)
if: ${{ matrix.case.cleanup }}
uses: jlumbroso/free-disk-space@v1.3.0
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: false
# all of these default to true, but feel free to set to
# "false" if necessary for your workflow
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: false
swap-storage: true
- uses: actions/checkout@v4
- name: run workflow
uses: snakemake/snakemake-github-action@v2
with:
directory: .test
snakefile: workflow/Snakefile
args: >
--conda-cleanup-pkgs cache --sdm conda --cores 10 ${{ matrix.case.args }}
show-disk-usage-on-error: true
- name: generate report
if: ${{ matrix.case.report }}
uses: snakemake/snakemake-github-action@v2
with:
directory: .test
snakefile: workflow/Snakefile
args: >
--sdm conda --report report.zip ${{ matrix.case.args }}
show-disk-usage-on-error: true