mirror of
https://github.com/OpenCMT/uLib.git
synced 2025-12-05 23:11:31 +01:00
24 lines
351 B
Groovy
24 lines
351 B
Groovy
pipeline {
|
|
|
|
agent {
|
|
docker {
|
|
image 'infnpd/cmt-environment:1.0-centos7'
|
|
args '-u 0:0'
|
|
label 'DOCKER'
|
|
}
|
|
}
|
|
|
|
stages {
|
|
|
|
stage('Build') {
|
|
|
|
steps {
|
|
sh "mkdir build && cd build && cmake -D ULIB_USE_QT5:BOOL=OFF .. && make"
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|