Skip to content

Commit

Permalink
Merge pull request #89 from rendinam/build_config_name
Browse files Browse the repository at this point in the history
Change 'build_mode' to 'name' to reflect CI utils update.
  • Loading branch information
SaOgaz committed Jun 21, 2018
2 parents 153f1c8 + 2999ad0 commit d8d671e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if (utils.scm_checkout()) return
// Define each build configuration, copying and overriding values as necessary.
bc0 = new BuildConfig()
bc0.nodetype = "linux-stable"
bc0.build_mode = "debug"
bc0.name = "debug"
bc0.build_cmds = ["conda env update --file=environment.yml",
"with_env -n jwql python setup.py install"]
bc0.test_cmds = ["with_env -n jwql pytest --junitxml=result.xml"]
Expand All @@ -18,4 +18,4 @@ bc0.failedFailureThresh = 1

// Iterate over configurations that define the (distibuted) build matrix.
// Spawn a host of the given nodetype for each combination and run in parallel.
utils.run([bc0])
utils.run([bc0])

0 comments on commit d8d671e

Please sign in to comment.