We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 144e706 commit 3ed052aCopy full SHA for 3ed052a
Dockerfile
@@ -6,6 +6,7 @@ RUN apk add --no-cache git gcc musl-dev make
6
WORKDIR /go/src/github.com/infobloxopen/migrate
7
8
ENV GO111MODULE=on
9
+ENV GOFLAGS=""
10
11
COPY go.mod go.sum ./
12
Jenkinsfile
@@ -32,11 +32,6 @@ pipeline {
32
}
33
34
stage("Build Image") {
35
- // only build images on trunk builds. An alternate approach
36
- // when { branch 'main' } or when { anyOf { branch "main", branch "develop", "ib" } }
37
- when {
38
- expression { ! isPrBuild() }
39
- }
40
steps {
41
withDockerRegistry([credentialsId: "${env.JENKINS_DOCKER_CRED_ID}", url: ""]) {
42
dir("$DIRECTORY") {
0 commit comments