Jenkins pipeline file
This commit is contained in:
parent
9eff879458
commit
1306174071
1 changed files with 25 additions and 0 deletions
25
test/Jenkinsfile
vendored
Normal file
25
test/Jenkinsfile
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
node {
|
||||||
|
stage('Checkout') {
|
||||||
|
git url: 'https://github.com/clicon/clixon.git'
|
||||||
|
checkout scm
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Configure') {
|
||||||
|
/* `make check` returns non-zero on test failures,
|
||||||
|
* using `true` to allow the Pipeline to continue nonetheless
|
||||||
|
*/
|
||||||
|
sh 'make clean || true'
|
||||||
|
sh './configure || true'
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Make') {
|
||||||
|
/* `make check` returns non-zero on test failures,
|
||||||
|
* using `true` to allow the Pipeline to continue nonetheless
|
||||||
|
*/
|
||||||
|
sh 'make || true'
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Testing') {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue