We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3004fa commit 2ebd458Copy full SHA for 2ebd458
Jenkinsfile
@@ -27,10 +27,14 @@ def build_v3io_tsdb(TAG_VERSION) {
27
container('golang') {
28
dir("${BUILD_FOLDER}/src/github.com/${git_project_upstream_user}/${git_project}") {
29
sh """
30
+ mkdir -p /home/jenkins/go/bin
31
GO111MODULE=on GOOS=linux GOARCH=amd64 TRAVIS_TAG=${TAG_VERSION} make bin
32
GO111MODULE=on GOOS=darwin GOARCH=amd64 TRAVIS_TAG=${TAG_VERSION} make bin
33
GO111MODULE=on GOOS=windows GOARCH=amd64 TRAVIS_TAG=${TAG_VERSION} make bin
34
ls -la /go/bin
35
+ mv /go/bin/* /home/jenkins/go/bin/
36
+ ls -la /home/jenkins/go/bin/
37
+
38
"""
39
}
40
0 commit comments