forked from nuke-build/nuke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
30 lines (29 loc) · 955 Bytes
/
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
pipeline {
agent {label 'linux' }
options {
buildDiscarder(logRotator(numToKeepStr:'10'))
timeout(time: 15, unit: 'MINUTES')
}
stages {
stage('Compile') {
steps {
sh '/bin/bash ./build.sh Compile'
}
}
stage('Test') {
steps {
sh '/bin/bash ./build.sh Test -Skip'
}
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 -Skip'
}
}
}
}