forked from openshift/assisted-installer-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
77 lines (69 loc) · 2.31 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
String cron_string = BRANCH_NAME == "master" ? "@daily" : ""
pipeline {
environment {
CI = "true"
// Credentials
SLACK_TOKEN = credentials('slack-token')
QUAY_IO_CREDS = credentials('ocpmetal_cred')
DOCKER_IO_CREDS = credentials('dockerio_cred')
}
options {
timeout(time: 1, unit: 'HOURS')
}
agent { label 'centos_worker' }
triggers { cron(cron_string) }
stages {
stage('Init') {
steps {
// 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 "docker login docker.io -u ${DOCKER_IO_CREDS_USR} -p ${DOCKER_IO_CREDS_PSW}"
sh "podman login docker.io -u ${DOCKER_IO_CREDS_USR} -p ${DOCKER_IO_CREDS_PSW}"
}
}
stage('build') {
steps {
sh 'skipper make build'
}
}
stage('test') {
steps {
sh 'skipper make subsystem'
}
}
stage('publish images') {
when {
expression {!env.BRANCH_NAME.startsWith('PR')}
}
steps {
sh "make publish"
}
}
stage('publish images on push to master') {
when {
branch 'master'
}
steps {
sh "make publish 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 failed, see: ${BUILD_URL}"]
writeJSON(file: 'data.txt', json: data, pretty: 4)
}
sh '''curl -X POST -H 'Content-type: application/json' --data-binary "@data.txt" https://hooks.slack.com/services/${SLACK_TOKEN}'''
}
sh 'sudo journalctl TAG=agent --since="1 hour ago" > agent_journalctl.log || true'
archiveArtifacts artifacts: '*.log', fingerprint: true
junit '**/reports/junit*.xml'
cobertura coberturaReportFile: '**/reports/*coverage.xml', onlyStable: false, enableNewApi: true
}
}
}
}