Jenkinsfile

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

9
Jenkinsfile vendored
View File

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