diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..6cb8bbb --- /dev/null +++ b/Jenkinsfile @@ -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" + } + + } + + } + +}