Build pipeline: vsh-ci-dev-gckj5
Source commit: da62b4ffe3
Source message: Add labels to qc_test component
24 lines
637 B
Bash
Executable File
24 lines
637 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# get the root of the directory
|
|
REPO_ROOT=$(git rev-parse --show-toplevel)
|
|
|
|
# ensure that the command below is run from the root of the repository
|
|
cd "$REPO_ROOT"
|
|
|
|
nextflow \
|
|
run . \
|
|
-main-script src/workflows/integration/bbknn_leiden/test.nf \
|
|
-entry test_wf \
|
|
-profile docker,no_publish \
|
|
-c src/workflows/utils/labels_ci.config \
|
|
-c src/workflows/utils/integration_tests.config
|
|
|
|
nextflow \
|
|
run . \
|
|
-main-script src/workflows/integration/bbknn_leiden/test.nf \
|
|
-entry test_wf2 \
|
|
-profile docker,no_publish \
|
|
-c src/workflows/utils/labels_ci.config \
|
|
-c src/workflows/utils/integration_tests.config
|