-
Notifications
You must be signed in to change notification settings - Fork 13
54 lines (45 loc) · 1.35 KB
/
YAML_tests.yml
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
name: YAML tests
on:
workflow_dispatch:
schedule:
- cron: '0 6 * * 3,6'
env:
RUN_NAME: Resume_tests
LAUNCHER: ${{github.workspace}}/tests/github/run_pipeline.py
CFG_DIR: /abga/work/andreyp/ci_isoquant/data
BIN_PATH: /abga/work/andreyp/ci_isoquant/bin/
OUTPUT_BASE: /abga/work/andreyp/ci_isoquant/output/${{github.ref_name}}/
concurrency:
group: ${{github.workflow}}
cancel-in-progress: false
jobs:
launch-runner:
runs-on:
labels: [isoquant]
name: 'Running IsoQuant and QC'
steps:
- name: 'Cleanup'
run: >
set -e &&
shopt -s dotglob &&
rm -rf *
- name: 'Checkout'
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: 'YAML file with 1 experiment and 4 samples'
if: always()
shell: bash
env:
STEP_NAME: YAML1.4SAMPLES.SIRVs.R10
run: |
export PATH=$PATH:${{env.BIN_PATH}}
python3 ${{env.LAUNCHER}} ${{env.CFG_DIR}}/${{env.STEP_NAME}}.cfg -o ${{env.OUTPUT_BASE}}
- name: 'YAML file with 2 experiments with 2 samples each'
if: always()
shell: bash
env:
STEP_NAME: YAML2.2x2SAMPLES.SIRVs.R10
run: |
export PATH=$PATH:${{env.BIN_PATH}}
python3 ${{env.LAUNCHER}} ${{env.CFG_DIR}}/${{env.STEP_NAME}}.cfg -o ${{env.OUTPUT_BASE}}