blob: 9b2e74b32d40405658afd672aa1d6933edab2f1a [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 Williams38126df2019-03-21 23:02:24 -070067 echo "Building image with tag: \$tag (should reuse cached layers)"
68 make DOCKER_TAG="\$tag" docker-build
Zack Williamse16a9bd2019-03-21 23:02:24 -070069 done
70 fi
Zack Williams38126df2019-03-21 23:02:24 -070071 """)
Zack Williamse16a9bd2019-03-21 23:02:24 -070072 }
73 }
74
75 stage('push'){
76 steps {
77 script {
78 withDockerRegistry([credentialsId: 'docker-artifact-push-credentials']) {
Zack Williams38126df2019-03-21 23:02:24 -070079 sh( script:"""
Zack Williamse16a9bd2019-03-21 23:02:24 -070080 #!/usr/bin/env bash
81 set -eu -o pipefail
82
83 # checked out in a subdir so the log can be in WORKSPACE
Zack Williams8d92d6d2019-04-16 18:12:12 -070084 cd "$projectName"
Zack Williamse16a9bd2019-03-21 23:02:24 -070085
Zack Williams38126df2019-03-21 23:02:24 -070086 # set registry/repository variables
87 export DOCKER_REGISTRY="$dockerRegistry"
Zack Williamse16a9bd2019-03-21 23:02:24 -070088 export DOCKER_REPOSITORY="$dockerRepo/"
89
90 # Push w/branch
91 echo "Pushing image with branch"
Zack Williams8d92d6d2019-04-16 18:12:12 -070092 make DOCKER_TAG="$branchName" docker-push 2>&1 | tee "$WORKSPACE/docker-push.log"
Zack Williamse16a9bd2019-03-21 23:02:24 -070093
94 # Push w/tags if they exist
95 if [ -n "$git_tags" ]
Zack Williams38126df2019-03-21 23:02:24 -070096 echo "Tags found in git, pushing:"
97 echo "$git_tags"
Zack Williamse16a9bd2019-03-21 23:02:24 -070098 then
99 for tag in $git_tags
100 do
Zack Williams38126df2019-03-21 23:02:24 -0700101 echo "Pushing image with tag: \$tag (should reuse cached layers)"
102 make DOCKER_TAG="\$tag" docker-push
Zack Williamse16a9bd2019-03-21 23:02:24 -0700103 done
104 fi
Zack Williams38126df2019-03-21 23:02:24 -0700105 """)
Zack Williamse16a9bd2019-03-21 23:02:24 -0700106 }
107 }
108 }
109 }
110 }
111
112 post {
113 always {
Zack Williams38126df2019-03-21 23:02:24 -0700114 archiveArtifacts artifacts: 'docker-*.log', fingerprint: true
Zack Williamse16a9bd2019-03-21 23:02:24 -0700115 deleteDir()
116 }
117 }
118}