blob: 2b5566395f2832b77fe0333e9b1afe1f71092570 [file] [log] [blame]
Zack Williams3bf60d52019-06-07 12:56:10 -07001// Copyright 2017-present Open Networking Foundation
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Zack Williamse16a9bd2019-03-21 23:02:24 -070015/* docker-publish pipeline */
16pipeline {
17
18 /* no label, executor is determined by JJB */
19 agent {
20 label "${params.executorNode}"
21 }
22 stages {
23
24 stage('checkout') {
25 steps {
26 checkout([
27 $class: 'GitSCM',
Zack Williams99330272019-08-21 11:33:48 -070028 userRemoteConfigs: [[ url: "${params.gitUrl}", ]],
29 branches: [[ name: "${params.gitRef}", ]],
Zack Williamse16a9bd2019-03-21 23:02:24 -070030 extensions: [
31 [$class: 'WipeWorkspace'],
Zack Williams8d92d6d2019-04-16 18:12:12 -070032 [$class: 'RelativeTargetDirectory', relativeTargetDir: "${params.projectName}"],
Zack Williamse16a9bd2019-03-21 23:02:24 -070033 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
34 ],
35 ])
36 script {
Zack Williams8d92d6d2019-04-16 18:12:12 -070037 git_tags = sh(script:"cd $projectName; git tag -l --points-at HEAD", returnStdout: true).trim()
Zack Williamse16a9bd2019-03-21 23:02:24 -070038 }
39 }
40 }
41
42 stage('build'){
43 steps {
Zack Williams38126df2019-03-21 23:02:24 -070044 sh( script: """
Zack Williamse16a9bd2019-03-21 23:02:24 -070045 #!/usr/bin/env bash
46 set -eu -o pipefail
47
48 # checked out in a subdir so the log can be in WORKSPACE
Zack Williams8d92d6d2019-04-16 18:12:12 -070049 cd "$projectName"
Zack Williamse16a9bd2019-03-21 23:02:24 -070050
Zack Williams38126df2019-03-21 23:02:24 -070051 # set registry/repository variables
52 export DOCKER_REGISTRY="$dockerRegistry"
Zack Williamse16a9bd2019-03-21 23:02:24 -070053 export DOCKER_REPOSITORY="$dockerRepo/"
54
55 # Build w/branch
56 echo "Building image with branch"
Zack Williams8d92d6d2019-04-16 18:12:12 -070057 make DOCKER_TAG="$branchName" docker-build 2>&1 | tee "$WORKSPACE/docker-build.log"
Zack Williamse16a9bd2019-03-21 23:02:24 -070058
59 # Build w/tags if they exist
60 if [ -n "$git_tags" ]
Zack Williams38126df2019-03-21 23:02:24 -070061 echo "Tags found in git, building:"
62 echo "$git_tags"
63
Zack Williamse16a9bd2019-03-21 23:02:24 -070064 then
65 for tag in $git_tags
66 do
Zack Williams6e070f52019-10-04 11:08:59 -070067 # remove leading 'v' on funky golang tags
68 clean_tag=$(echo \$tag | sed 's/^v//g')
69 echo "Building image with tag: \$clean_tag (should reuse cached layers)"
70 make DOCKER_TAG="\$clean_tag" docker-build
Zack Williamse16a9bd2019-03-21 23:02:24 -070071 done
72 fi
Zack Williams38126df2019-03-21 23:02:24 -070073 """)
Zack Williamse16a9bd2019-03-21 23:02:24 -070074 }
75 }
76
77 stage('push'){
78 steps {
79 script {
80 withDockerRegistry([credentialsId: 'docker-artifact-push-credentials']) {
Zack Williams38126df2019-03-21 23:02:24 -070081 sh( script:"""
Zack Williamse16a9bd2019-03-21 23:02:24 -070082 #!/usr/bin/env bash
83 set -eu -o pipefail
84
85 # checked out in a subdir so the log can be in WORKSPACE
Zack Williams8d92d6d2019-04-16 18:12:12 -070086 cd "$projectName"
Zack Williamse16a9bd2019-03-21 23:02:24 -070087
Zack Williams38126df2019-03-21 23:02:24 -070088 # set registry/repository variables
89 export DOCKER_REGISTRY="$dockerRegistry"
Zack Williamse16a9bd2019-03-21 23:02:24 -070090 export DOCKER_REPOSITORY="$dockerRepo/"
91
92 # Push w/branch
93 echo "Pushing image with branch"
Zack Williams8d92d6d2019-04-16 18:12:12 -070094 make DOCKER_TAG="$branchName" docker-push 2>&1 | tee "$WORKSPACE/docker-push.log"
Zack Williamse16a9bd2019-03-21 23:02:24 -070095
96 # Push w/tags if they exist
97 if [ -n "$git_tags" ]
Zack Williams38126df2019-03-21 23:02:24 -070098 echo "Tags found in git, pushing:"
99 echo "$git_tags"
Zack Williamse16a9bd2019-03-21 23:02:24 -0700100 then
101 for tag in $git_tags
102 do
Zack Williams6e070f52019-10-04 11:08:59 -0700103 # remove leading 'v' on funky golang tags
104 clean_tag=$(echo \$tag | sed 's/^v//g')
105 echo "Pushing image with tag: \$clean_tag (should reuse cached layers)"
106 make DOCKER_TAG="\$clean_tag" docker-push
Zack Williamse16a9bd2019-03-21 23:02:24 -0700107 done
108 fi
Zack Williams38126df2019-03-21 23:02:24 -0700109 """)
Zack Williamse16a9bd2019-03-21 23:02:24 -0700110 }
111 }
112 }
113 }
114 }
115
116 post {
117 always {
Zack Williams38126df2019-03-21 23:02:24 -0700118 archiveArtifacts artifacts: 'docker-*.log', fingerprint: true
Zack Williamse16a9bd2019-03-21 23:02:24 -0700119 deleteDir()
120 }
121 }
122}