Update Jenkinsfile to download test dependencies

This commit is contained in:
Gunnsteinn Hall 2018-12-07 11:51:02 +00:00
parent 9642436460
commit e89ee8a42f

4
Jenkinsfile vendored
View File

@ -21,8 +21,8 @@ node {
sh 'go get github.com/tebeka/go2xunit' sh 'go get github.com/tebeka/go2xunit'
sh 'go get github.com/t-yuki/gocover-cobertura' sh 'go get github.com/t-yuki/gocover-cobertura'
// Get all dependencies. // Get all dependencies (for tests also).
sh 'go get ./...' sh 'go get -t ./...'
} }
stage('Linting') { stage('Linting') {