Skip to content

Commit

Permalink
Fix CI instructions for the build stage
Browse files Browse the repository at this point in the history
  • Loading branch information
mdiazmel committed Jun 6, 2019
1 parent 6a5cbe7 commit 8a34525
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ pipeline {
parallel {
stage('Build in Linux') {
agent { label 'ubuntu' }
environment {
PATH = "$HOME/miniconda/bin:$PATH"
}
when { changeset "environment.yml" }
steps {
echo 'Building Conda environment... ${BRANCH_NAME}'
Expand All @@ -20,6 +23,9 @@ pipeline {
}
stage('Build in Mac') {
agent { label 'macos' }
environment {
PATH = "$HOME/miniconda3/bin:$PATH"
}
when { changeset "environment.yml" }
steps {
echo 'Building Conda environment...' + 'env.BRANCH_NAME'
Expand Down

0 comments on commit 8a34525

Please sign in to comment.