Skip to content

Commit 6c764e0

Browse files
committed
Merge remote-tracking branch 'upstream/dev' into new_cli
2 parents 4147a2f + f1d175f commit 6c764e0

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@ jobs:
8080
- name: Clean up Disk space
8181
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
8282

83-
- name: "Stub run of the pipeline ${{ matrix.NXF_VER }} | ${{ matrix.test_name }} | ${{ matrix.profile }}"
83+
- name: "Run of the pipeline ${{ matrix.NXF_VER }} | ${{ matrix.test_name }} | ${{ matrix.profile }}"
8484
run: |
8585
nextflow run ${GITHUB_WORKSPACE} -profile ${{ matrix.test_name }},${{ matrix.profile }} --outdir ./results

nextflow.config

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -222,14 +222,14 @@ env {
222222
}
223223

224224
// Set bash options
225-
process.shell = """\
226-
bash
227-
228-
set -e # Exit if a tool returns a non-zero status/exit code
229-
set -u # Treat unset variables and parameters as an error
230-
set -o pipefail # Returns the status of the last command to exit with a non-zero status or zero if all successfully execute
231-
set -C # No clobber - prevent output redirection from overwriting files.
232-
"""
225+
process.shell = [
226+
"bash",
227+
"-C", // No clobber - prevent output redirection from overwriting files.
228+
"-e", // Exit if a tool returns a non-zero status/exit code
229+
"-u", // Treat unset variables and parameters as an error
230+
"-o", // Returns the status of the last command to exit..
231+
"pipefail" // ..with a non-zero status or zero if all successfully execute
232+
]
233233

234234
// Disable process selector warnings by default. Use debug profile to enable warnings.
235235
nextflow.enable.configProcessNamesValidation = false

0 commit comments

Comments
 (0)