blob: f53e4847309385317faf060ea85e7d1fa2f40271 [file] [log] [blame]
You Wang5c15a7a2020-04-02 11:24:33 -07001// Copyright 2020-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
15// omec-postmerge.groovy
You Wang40239452020-06-11 20:17:15 -070016// Combines docker-publish, deploy and test pipelines into one job that can be triggered by a GitHub PR merge
You Wang5c15a7a2020-04-02 11:24:33 -070017
You Wang5c15a7a2020-04-02 11:24:33 -070018
19pipeline {
20
21 agent {
22 label "${params.buildNode}"
23 }
24
You Wang40239452020-06-11 20:17:15 -070025 stages {
26 stage('Build and Publish') {
You Wang5c15a7a2020-04-02 11:24:33 -070027 steps {
Jeremy Ronquillod91e3082020-04-09 11:32:41 -070028 script {
You Wang425d49f2020-07-29 21:43:28 -070029 build_job_name = "docker-publish-github_$repoName"
30 if ("${repoName}" == "spgw"){
31 build_job_name = "aether-member-only-jobs/" + build_job_name
32 }
Jeremy Ronquillod91e3082020-04-09 11:32:41 -070033 abbreviated_commit_hash = commitHash.substring(0, 7)
Jeremy Ronquillo6e42f8c2020-04-27 14:13:51 -070034 tags_to_build = [ "${branchName}-latest",
You Wang7673e482020-09-18 16:33:34 -070035 "${branchName}-${abbreviated_commit_hash}" ]
36 env_vars = [ "", "" ]
37 if ("${repoName}" == "upf-epc"){
38 tags_to_build += [ "${branchName}-latest-ivybridge",
39 "${branchName}-${abbreviated_commit_hash}-ivybridge" ]
40 env_vars = [ "CPU=haswell", "CPU=haswell", "CPU=ivybridge", "CPU=ivybridge" ]
Jeremy Ronquillo6e42f8c2020-04-27 14:13:51 -070041 }
You Wang7673e482020-09-18 16:33:34 -070042 def builds = [:]
43 for(i = 0; i < tags_to_build.size(); i += 1) {
44 def tag_to_build = tags_to_build[i]
45 def env_var = env_vars[i]
46 builds["${build_job_name}${i}"] = {
47 build job: "${build_job_name}", parameters: [
48 string(name: 'gitUrl', value: "${repoUrl}"),
49 string(name: 'gitRef', value: "${branchName}"),
50 string(name: 'branchName', value: tag_to_build),
51 string(name: 'projectName', value: "${repoName}"),
52 string(name: 'extraEnvironmentVars', value: env_var),
53 ]
54 }
55 }
56 parallel builds
Jeremy Ronquillod91e3082020-04-09 11:32:41 -070057 }
You Wang5c15a7a2020-04-02 11:24:33 -070058 }
59 }
60
You Wang2a8a91b2020-06-15 13:34:22 -070061 stage ("Prepare OMEC deployment"){
You Wang5c15a7a2020-04-02 11:24:33 -070062 steps {
63 script {
You Wang7673e482020-09-18 16:33:34 -070064 hssdb_tag = sh returnStdout: true, script: """curl -s 'https://registry.hub.docker.com/v2/repositories/omecproject/c3po-hssdb/tags/' | jq '.results[] | select(.name | test("${c3poBranchName}-[0-9a-z]{7}\$")).name' | head -1 | tr -d \\\""""
65 hss_tag = sh returnStdout: true, script: """curl -s 'https://registry.hub.docker.com/v2/repositories/omecproject/c3po-hss/tags/' | jq '.results[] | select(.name | test("${c3poBranchName}-[0-9a-z]{7}\$")).name' | head -1 | tr -d \\\""""
66 mme_tag = sh returnStdout: true, script: """curl -s 'https://registry.hub.docker.com/v2/repositories/omecproject/nucleus/tags/' | jq '.results[] | select(.name | test("${nucleusBranchName}-[0-9a-z]{7}\$")).name' | head -1 | tr -d \\\""""
67 spgwc_tag = sh returnStdout: true, script: """curl -s 'https://registry.hub.docker.com/v2/repositories/omecproject/spgw/tags/' | jq '.results[] | select(.name | test("${spgwBranchName}-[0-9a-z]{7}\$")).name' | head -1 | tr -d \\\""""
68 bess_tag = sh returnStdout: true, script: """curl -s 'https://registry.hub.docker.com/v2/repositories/omecproject/upf-epc-bess/tags/' | jq '.results[] | select(.name | test("${upfBranchName}-[0-9a-z]{7}\$")).name' | head -1 | tr -d \\\""""
69 zmqiface_tag = sh returnStdout: true, script: """curl -s 'https://registry.hub.docker.com/v2/repositories/omecproject/upf-epc-cpiface/tags/' | jq '.results[] | select(.name | test("${upfBranchName}-[0-9a-z]{7}\$")).name' | head -1 | tr -d \\\""""
70 pfcpiface_tag = sh returnStdout: true, script: """curl -s 'https://registry.hub.docker.com/v2/repositories/omecproject/upf-epc-pfcpiface/tags/' | jq '.results[] | select(.name | test("${upfBranchName}-[0-9a-z]{7}\$")).name' | head -1 | tr -d \\\""""
You Wang40239452020-06-11 20:17:15 -070071
72 hssdb_image = "omecproject/c3po-hssdb:"+hssdb_tag
73 hss_image = "omecproject/c3po-hss:"+hss_tag
74 mme_image = "omecproject/nucleus:"+mme_tag
You Wang425d49f2020-07-29 21:43:28 -070075 spgwc_image = "omecproject/spgw:"+spgwc_tag
You Wange1cbba22020-06-15 21:16:14 -070076 bess_image = "omecproject/upf-epc-bess:"+bess_tag
You Wang425d49f2020-07-29 21:43:28 -070077 zmqiface_image = "omecproject/upf-epc-cpiface:"+zmqiface_tag
78 pfcpiface_image = "omecproject/upf-epc-pfcpiface:"+pfcpiface_tag
You Wang40239452020-06-11 20:17:15 -070079
You Wang5c15a7a2020-04-02 11:24:33 -070080 switch("${params.repoName}") {
81 case "c3po":
You Wang40239452020-06-11 20:17:15 -070082 hssdb_image = "${params.registry}/c3po-hssdb:${branchName}-${abbreviated_commit_hash}"
83 hss_image = "${params.registry}/c3po-hss:${branchName}-${abbreviated_commit_hash}"
You Wang5c15a7a2020-04-02 11:24:33 -070084 break
You Wang425d49f2020-07-29 21:43:28 -070085 case "spgw":
86 spgwc_image = "${params.registry}/spgw:${branchName}-${abbreviated_commit_hash}"
You Wang5c15a7a2020-04-02 11:24:33 -070087 break
You Wang40239452020-06-11 20:17:15 -070088 case "Nucleus":
89 mme_image = "${params.registry}/nucleus:${branchName}-${abbreviated_commit_hash}"
You Wang5c15a7a2020-04-02 11:24:33 -070090 break
You Wange1cbba22020-06-15 21:16:14 -070091 case "upf-epc":
92 bess_image = "${params.registry}/upf-epc-bess:${branchName}-${abbreviated_commit_hash}"
You Wang425d49f2020-07-29 21:43:28 -070093 zmqiface_image = "${params.registry}/upf-epc-cpiface:${branchName}-${abbreviated_commit_hash}"
94 pfcpiface_image = "${params.registry}/upf-epc-pfcpiface:${branchName}-${abbreviated_commit_hash}"
You Wange1cbba22020-06-15 21:16:14 -070095 break
You Wang5c15a7a2020-04-02 11:24:33 -070096 }
You Wang40239452020-06-11 20:17:15 -070097 echo "Using hssdb image: ${hssdb_image}"
98 echo "Using hss image: ${hss_image}"
99 echo "Using mme image: ${mme_image}"
100 echo "Using spgwc image: ${spgwc_image}"
You Wange1cbba22020-06-15 21:16:14 -0700101 echo "Using bess image: ${bess_image}"
You Wang425d49f2020-07-29 21:43:28 -0700102 echo "Using zmqiface image: ${zmqiface_image}"
103 echo "Using pfcpiface image: ${pfcpiface_image}"
You Wang5c15a7a2020-04-02 11:24:33 -0700104 }
You Wang40239452020-06-11 20:17:15 -0700105 }
106 }
107
You Wang2a8a91b2020-06-15 13:34:22 -0700108 stage ("Deploy and Test"){
109 options {
110 lock(resource: 'aether-dev-cluster')
111 }
112
113 stages {
114 stage ("Deploy OMEC"){
115 steps {
116 build job: "omec_deploy_dev", parameters: [
117 string(name: 'hssdbImage', value: "${hssdb_image.trim()}"),
118 string(name: 'hssImage', value: "${hss_image.trim()}"),
119 string(name: 'mmeImage', value: "${mme_image.trim()}"),
120 string(name: 'spgwcImage', value: "${spgwc_image.trim()}"),
You Wange1cbba22020-06-15 21:16:14 -0700121 string(name: 'bessImage', value: "${bess_image.trim()}"),
You Wang425d49f2020-07-29 21:43:28 -0700122 string(name: 'zmqifaceImage', value: "${zmqiface_image.trim()}"),
123 string(name: 'pfcpifaceImage', value: "${pfcpiface_image.trim()}"),
You Wang2a8a91b2020-06-15 13:34:22 -0700124 ]
125 }
126 }
127
128 stage ("Run NG40 Tests"){
129 steps {
130 build job: "omec_ng40-test_dev"
131 }
132 }
You Wang5c15a7a2020-04-02 11:24:33 -0700133 }
134 }
135 }
136 post {
137 failure {
138 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${params.maintainers}", sendToIndividuals: false])
139 }
140 }
141}