diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bf7355aa6e19f1c29ab020d8524ff204ffc9e7cc..34062a6bedaf41b7d145f2556276cb8d425ddbb1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -705,6 +705,51 @@ integration_pe: - always +failAmbiguousSpecies: + stage: integration + only: [merge_requests] + except: + variables: + - $CI_MERGE_REQUEST_TARGET_BRANCH_NAME =~ /master/ + script: + - hostname + - ulimit -a + - nextflow -q run ./workflow/rna-seq.nf --deriva ./test_data/auth/credential.json --bdbag ./test_data/auth/cookies.txt --repRID Q-Y5ER --source staging --upload true -with-dag dag.png --dev false --ci true + retry: + max: 0 + when: + - always + +failTrunkation: + stage: integration + only: [merge_requests] + except: + variables: + - $CI_MERGE_REQUEST_TARGET_BRANCH_NAME =~ /master/ + script: + - hostname + - ulimit -a + - nextflow -q run ./workflow/rna-seq.nf --deriva ./test_data/auth/credential.json --bdbag ./test_data/auth/cookies.txt --repRID Q-Y5ET --source staging --upload true -with-dag dag.png --dev false --ci true + retry: + max: 0 + when: + - always + +failMismatchR1R2: + stage: integration + only: [merge_requests] + except: + variables: + - $CI_MERGE_REQUEST_TARGET_BRANCH_NAME =~ /master/ + script: + - hostname + - ulimit -a + - nextflow -q run ./workflow/rna-seq.nf --deriva ./test_data/auth/credential.json --bdbag ./test_data/auth/cookies.txt --repRID 16-CWH4 --source staging --upload true -with-dag dag.png --dev false --ci true + retry: + max: 0 + when: + - always + override_inputBag: stage: integration only: [merge_requests]