Skip to content

Commit

Permalink
Made travis tests run with minimum supported version of nextflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ewels committed Mar 9, 2018
1 parent 65c34a2 commit 8cad814
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ install:
- cd ${TRAVIS_BUILD_DIR}

env:
# Test with minimum supported version of Nextflow
- NXF_VER=0.25.1 CLFLAGS="" # Basic run
- NXF_VER=0.25.1 CLFLAGS="-r" # Run, RRBS mode
- NXF_VER=0.25.1 CLFLAGS="-n" # Run, no-trimming mode
# Test with the latest version of nextflow
- CLFLAGS="" # Basic run
- CLFLAGS="-r" # Run, RRBS mode
- CLFLAGS="-n" # Run, no-trimming mode
Expand Down
6 changes: 4 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ vim: syntax=groovy
*/

// Pipeline version
params.version = "0.4dev"
version = "0.4dev"

// Minimum version of nextflow required
params.nf_required_version = '0.25.1'
nf_required_version = '0.25.1'

// Configurable variables
params {
version = version
nf_required_version = nf_required_version
name = false
project = false
clusterOptions = false
Expand Down

0 comments on commit 8cad814

Please sign in to comment.