-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJenkinsfile
66 lines (55 loc) · 1.51 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
#!groovy
@Library('github.com/fedora-ci/jenkins-pipeline-library@prototype') _
def imageName = 'quay.io/fedoraci/rpmdeplint'
def imageTag
def commitId
def gitUrl
pipeline {
agent {
label 'fedora-ci-agent'
}
stages {
stage('Init') {
steps {
script {
shortCommitId = sh(script: 'git rev-parse --short HEAD', returnStdout: true).trim()
gitUrl = getGitUrl()
}
}
}
stage('Build and Push') {
steps {
script {
if (isPullRequest()) {
imageTag = "pr-${env.CHANGE_ID}"
} else {
imageTag = shortCommitId
}
}
buildImageAndPushToRegistry(
imageName: imageName,
imageTag: imageTag,
pushSecret: env.QUAY_PUSH_SECRET_NAME,
gitUrl: gitUrl,
gitRef: shortCommitId,
buildName: 'rpmdeplint-image',
openshiftProject: env.OPENSHIFT_PROJECT_NAME
)
}
}
stage('Test') {
steps {
sh('./runtest.sh')
}
}
}
post {
success {
script {
if (isPullRequest()) {
echo 'TODO: comment on the pull request in GitHub...'
}
}
}
}
}