Adding jenkinsfile
webfish/master There was a failure building this commit Details

master
denes 6 years ago
parent 8dbb43328b
commit 400970c6d0

13
Jenkinsfile vendored

@ -0,0 +1,13 @@
pipeline {
agent any
stages {
stage('Compile') {
steps {
echo 'Building..'
sh 'cmake . && make'
}
}
}
}
Loading…
Cancel
Save