Jenkinsfile

This commit is contained in:
s416122 2020-04-03 11:32:12 +02:00
parent 55193b74d4
commit 4e30e90395

19
Jenkinsfile vendored
View File

@ -1,12 +1,11 @@
pipeline {
agent { dockerfile true }
stages {
stage('Test') {
steps {
sh 'make --version'
sh 'sclite --help || true'
}
}
}
}
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
}