forked from openshift/assisted-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
96 lines (81 loc) · 3.2 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
String cron_string = BRANCH_NAME == "master" ? "@hourly" : BRANCH_NAME.startsWith("PR") ? "@midnight" : ""
pipeline {
agent { label 'centos_worker' }
triggers { cron(cron_string) }
environment {
PATH = "${PATH}:/usr/local/go/bin"
CI = "true"
// Images
ASSISTED_ORG = "quay.io/ocpmetal"
ASSISTED_TAG = "${BUILD_TAG}"
// Credentials
SLACK_TOKEN = credentials('slack-token')
QUAY_IO_CREDS = credentials('ocpmetal_cred')
TWINE_CREDS = credentials('assisted-pypi')
TWINE_USERNAME="${TWINE_CREDS_USR}"
TWINE_PASSWORD="${TWINE_CREDS_PSW}"
TWINE_REPOSITORY="pypi"
}
options {
timeout(time: 2, unit: 'HOURS')
}
stages {
stage('Init') {
steps {
sh 'make clear-all || true'
// Logout from problematic registries
sh 'docker logout registry.svc.ci.openshift.org || true'
sh 'podman logout --all || true'
sh 'oc logout || true'
// Login to quay.io
sh "docker login quay.io -u ${QUAY_IO_CREDS_USR} -p ${QUAY_IO_CREDS_PSW}"
sh "podman login quay.io -u ${QUAY_IO_CREDS_USR} -p ${QUAY_IO_CREDS_PSW}"
sh 'make ci-lint'
}
}
stage('Build') {
steps {
sh "make build-all"
}
}
stage('Publish') {
when {
expression {!env.BRANCH_NAME.startsWith('PR')}
}
steps {
sh "make publish"
// When the index index is being built, the opm tooling pulls the bundle
// image from quay, so the index is built after the bundle image has been
// published.
sh "make build-publish-index"
}
}
stage('Publish master') {
when { branch 'master'}
steps {
sh "make publish PUBLISH_TAG=latest"
// When the index index is being built, the opm tooling pulls the bundle
// image from quay, so the index is built after the bundle image has been
// published.
sh "make build-publish-index PUBLISH_TAG=latest"
}
}
}
post {
always {
script {
if ((env.BRANCH_NAME == 'master') && (currentBuild.currentResult == "ABORTED" || currentBuild.currentResult == "FAILURE")){
script {
def data = [text: "Attention! ${BUILD_TAG} job ${currentBuild.currentResult}, see: ${BUILD_URL}"]
writeJSON(file: 'data.txt', json: data, pretty: 4)
}
sh '''curl --retry 5 -X POST -H 'Content-type: application/json' --data-binary "@data.txt" https://hooks.slack.com/services/${SLACK_TOKEN}'''
}
archiveArtifacts artifacts: '*.log', fingerprint: true, allowEmptyArchive: true
junit '**/reports/junit*.xml'
cobertura coberturaReportFile: '**/reports/*coverage.xml', onlyStable: false, enableNewApi: true
sh "make clear-all"
}
}
}
}