blob: 5f23be43b908a24157bb3c0fae3ed60bf311c5c2 [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
16// Combines docker-publish and deploy-staging pipelines into one job that can be triggered by a GitHub PR merge
17
18def hssdb_tag = ""
19def hss_tag = ""
20def mme_tag = ""
21def spgwc_tag = ""
22def spgwu_tag = ""
Jeremy Ronquillod91e3082020-04-09 11:32:41 -070023def abbreviated_commit_hash = ""
Jeremy Ronquilloe65e9a92020-04-08 16:27:55 -070024def quietPeriodTime = 0
You Wang5c15a7a2020-04-02 11:24:33 -070025
26pipeline {
27
28 agent {
29 label "${params.buildNode}"
30 }
31
32 stages {
33
34 stage('Publish') {
35 steps {
Jeremy Ronquillod91e3082020-04-09 11:32:41 -070036 script {
37 abbreviated_commit_hash = commitHash.substring(0, 7)
38 }
You Wang5c15a7a2020-04-02 11:24:33 -070039 build job: "docker-publish-github_$repoName", parameters: [
40 string(name: 'gitUrl', value: "${repoUrl}"),
41 string(name: 'gitRef', value: "${branchName}"),
Jeremy Ronquillod91e3082020-04-09 11:32:41 -070042 string(name: 'branchName', value: "${branchName}-${abbreviated_commit_hash}"),
You Wang5c15a7a2020-04-02 11:24:33 -070043 string(name: 'projectName', value: "${repoName}"),
44 ]
45 }
46 }
47
48 stage('Deploy') {
49 steps {
50 script {
51 hssdb_tag = sh returnStdout: true, script: """curl -s 'https://registry.hub.docker.com/v2/repositories/omecproject/c3po-hssdb/tags/' | jq '.results[] | select(.name | contains("${c3poBranchName}")).name' | head -1 | tr -d \\\""""
52 hss_tag = sh returnStdout: true, script: """curl -s 'https://registry.hub.docker.com/v2/repositories/omecproject/c3po-hss/tags/' | jq '.results[] | select(.name | contains("${c3poBranchName}")).name' | head -1 | tr -d \\\""""
53 mme_tag = sh returnStdout: true, script: """curl -s 'https://registry.hub.docker.com/v2/repositories/omecproject/openmme/tags/' | jq '.results[] | select(.name | contains("${openmmeBranchName}")).name' | head -1 | tr -d \\\""""
54 spgwc_tag = sh returnStdout: true, script: """curl -s 'https://registry.hub.docker.com/v2/repositories/omecproject/ngic-cp/tags/' | jq '.results[] | select(.name | contains("${ngicBranchName}")).name' | head -1 | tr -d \\\""""
55 spgwu_tag = sh returnStdout: true, script: """curl -s 'https://registry.hub.docker.com/v2/repositories/omecproject/ngic-dp/tags/' | jq '.results[] | select(.name | contains("${ngicBranchName}")).name' | head -1 | tr -d \\\""""
56 switch("${params.repoName}") {
57 case "c3po":
Jeremy Ronquillod91e3082020-04-09 11:32:41 -070058 hssdb_tag = "${branchName}-${abbreviated_commit_hash}"
59 hss_tag = "${branchName}-${abbreviated_commit_hash}"
You Wang5c15a7a2020-04-02 11:24:33 -070060 break
61 case "ngic-rtc":
Jeremy Ronquillod91e3082020-04-09 11:32:41 -070062 spgwc_tag = "${branchName}-${abbreviated_commit_hash}"
63 spgwu_tag = "${branchName}-${abbreviated_commit_hash}"
You Wang5c15a7a2020-04-02 11:24:33 -070064 break
65 case "openmme":
Jeremy Ronquillod91e3082020-04-09 11:32:41 -070066 mme_tag = "${branchName}-${abbreviated_commit_hash}"
You Wang5c15a7a2020-04-02 11:24:33 -070067 break
68 }
Jeremy Ronquilloe65e9a92020-04-08 16:27:55 -070069 // Add quiet period to downstream job. This is to delay running the
70 // deploy staging job until midnight, so it will not interrupt any
71 // development on the staging cluster during the day.
72 def now = Math.floor((new Date()).getTime() / 1000.0) // Get current time in seconds
73 def PDTOffset = 25200 // PDT Offset from UTC in seconds
74 def oneDay = 86400 // 24 hours in seconds
75 quietPeriodTime = oneDay - (now - PDTOffset) % oneDay // number of seconds until next midnight
76 println "Quiet Period (seconds until next midnight): " + quietPeriodTime
You Wang5c15a7a2020-04-02 11:24:33 -070077 }
78 build job: "omec-deploy-staging", parameters: [
Jeremy Ronquillo3d4f7142020-04-23 12:25:47 -070079 string(name: 'hssdb_tag', value: "${hssdb_tag.trim()}"),
80 string(name: 'hss_tag', value: "${hss_tag.trim()}"),
81 string(name: 'mme_tag', value: "${mme_tag.trim()}"),
82 string(name: 'spgwc_tag', value: "${spgwc_tag.trim()}"),
83 string(name: 'spgwu_tag', value: "${spgwu_tag.trim()}"),
Jeremy Ronquilloe65e9a92020-04-08 16:27:55 -070084 ], quietPeriod: quietPeriodTime
You Wang5c15a7a2020-04-02 11:24:33 -070085 }
86 }
87 }
88 post {
89 failure {
90 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${params.maintainers}", sendToIndividuals: false])
91 }
92 }
93}