Skip to content

Commit

Permalink
fix: install go
Browse files Browse the repository at this point in the history
  • Loading branch information
kuisathaverat committed Jun 12, 2019
1 parent 74887c9 commit d3362fd
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,15 @@ pipeline {
unstash 'source'
dir("${BASE_DIR}"){
sh(label: 'Build packages', script: './script/jenkins/package.sh')
sh(label: 'Test packages install', script: 'mage -v testPackagesInstall')
sh(label: 'Test packages install', script: '''#!/bin/bash
set -xeuo pipefail
source ./_beats/dev-tools/common.bash
jenkins_setup
mage -v testPackagesInstall
''')
}
}
post {
Expand Down

0 comments on commit d3362fd

Please sign in to comment.