This commit is contained in:
laskau 2019-04-26 12:13:24 +02:00
parent 37c94af38f
commit 8a87a7a31d

13
Jenkinsfile vendored
View File

@ -1,5 +1,9 @@
pipeline {
agent any
agent {
dockerfile true
}
stages {
stage('Copy Archive') {
steps {
@ -24,6 +28,13 @@ pipeline {
}
}
stage('Test') {
steps {
sh 'node --version'
sh 'svn --version'
}
}
}
}