-
Notifications
You must be signed in to change notification settings - Fork 3
/
Jenkinsfile
37 lines (36 loc) · 1.1 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
pipeline {
agent { label 'linux' }
options {
buildDiscarder(logRotator(numToKeepStr:'10'))
timeout(time: 15, unit: 'MINUTES')
skipDefaultCheckout()
}
stages {
stage('Checkout') {
steps {
sh 'git config --global user.email "[email protected]" && git config --global user.name "nuke-bot"'
checkout scm
}
}
stage('Test') {
steps {
sh '/bin/bash ./build.sh Test'
}
post {
always {
step([$class: 'XUnitPublisher', testTimeMargin: '3000', thresholdMode: 1, thresholds: [[$class: 'FailedThreshold', failureThreshold: '0']], tools: [[$class: 'XUnitDotNetTestType', deleteOutputFiles: false, failIfNotNew: false, pattern: 'output/tests.xml', skipNoTestFiles: false, stopProcessingIfError: true]]])
}
}
}
stage('Pack') {
steps {
sh '/bin/bash ./build.sh Pack'
}
post {
success {
archiveArtifacts 'output/*'
}
}
}
}
}