Last active
August 24, 2017 09:34
-
-
Save ntakouris/930decfc5e36b5e76589922681f39896 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stage('Pre Test'){ | |
echo 'Pulling Dependencies' | |
sh 'go version' | |
sh 'go get -u github.com/golang/dep/cmd/dep' | |
sh 'go get -u github.com/golang/lint/golint' | |
sh 'go get github.com/tebeka/go2xunit' | |
sh 'cd $GOPATH/src/cmd/project && dep ensure' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment