added basic Jenkinsfile

This commit is contained in:
vectorcamp-jenkins 2021-04-13 22:52:42 +03:00
parent f2354537ff
commit a0abf31a82

22
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,22 @@
pipeline {
agent {
node {
label 'x86'
}
}
stages {
stage('Release, SSE') {
agent {
node {
label 'x86'
}
}
steps {
sh 'mkdir build-release-SSE && cmake -DCMAKE_BUILD_TYPE=Release -C build-release-SSE'
}
}
}
}