File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 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
File renamed without changes.
Original file line number Diff line number Diff 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.
235235nextflow. enable. configProcessNamesValidation = false
You can’t perform that action at this time.
0 commit comments