Browse Source

Added Jenkinsfile

patch-3
Artem Pikulin 7 years ago
parent
commit
f6bbff2027
  1. 16
      Jenkinsfile

16
Jenkinsfile

@ -0,0 +1,16 @@
pipeline {
agent {
docker {
image 'artempikulin/cmake-ubuntu'
args '-v .:/home/SuperNET -w /home/SuperNET'
}
}
stages {
stage('Build') {
steps {
build 'Cmake'
}
}
}
}
Loading…
Cancel
Save