We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be54ef9 commit 8c71ef3Copy full SHA for 8c71ef3
1 file changed
Jenkinsfile
@@ -69,7 +69,7 @@ parallel(
69
def git_branch = readFile('tmp/GIT_BRANCH')
70
def git_tag = readFile('tmp/GIT_TAG')
71
72
- if (git_branch != "heads/master" && git_tag == "") {
+ if (git_branch != "remotes/origin/master" && git_tag == "") {
73
echo "Skipping build of 386 binaries to shorten CI for Pull Requests"
74
env.BUILD_ARCH = "amd64"
75
}
@@ -94,7 +94,7 @@ parallel(
94
sh 'git describe --all --exact-match > tmp/GIT_BRANCH'
95
96
97
- if (git_branch == "heads/master") {
+ if (git_branch == "remotes/origin/master") {
98
sh 'make bootstrap'
99
sh 'make build-latest'
100
0 commit comments