Skip to content

Commit 2ebd458

Browse files
authored
fix(jenkins): mv tsdbctl binaries from /go/bin to /home/jenkins/go/bin (#503)
1 parent e3004fa commit 2ebd458

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: Jenkinsfile

+4
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,14 @@ def build_v3io_tsdb(TAG_VERSION) {
2727
container('golang') {
2828
dir("${BUILD_FOLDER}/src/github.com/${git_project_upstream_user}/${git_project}") {
2929
sh """
30+
mkdir -p /home/jenkins/go/bin
3031
GO111MODULE=on GOOS=linux GOARCH=amd64 TRAVIS_TAG=${TAG_VERSION} make bin
3132
GO111MODULE=on GOOS=darwin GOARCH=amd64 TRAVIS_TAG=${TAG_VERSION} make bin
3233
GO111MODULE=on GOOS=windows GOARCH=amd64 TRAVIS_TAG=${TAG_VERSION} make bin
3334
ls -la /go/bin
35+
mv /go/bin/* /home/jenkins/go/bin/
36+
ls -la /home/jenkins/go/bin/
37+
3438
"""
3539
}
3640
}

0 commit comments

Comments
 (0)