Skeleton for jenkins file

This commit is contained in:
Paolo Andreetto
2018-12-10 14:04:14 +01:00
parent b02399cb21
commit a8672e8620

22
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,22 @@
pipeline {
agent {
docker {
image 'infnpd/cmt-environment:latest-centos7'
args '-u 0:0'
}
}
stages {
stage('Build') {
steps {
sh "mkdir build && cd build && cmake -D ULIB_USE_QT5:BOOL=OFF .. && make"
}
}
}
}