Zaktualizuj 'Jenkinsfile'

This commit is contained in:
Jan Przybylski 2020-11-27 15:46:47 +01:00
parent 8b798143c1
commit 327cbd796d

16
Jenkinsfile vendored
View File

@ -1,20 +1,10 @@
pipeline {
agent any
agent { dockerfile true }
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
sh 'node --version'
sh 'svn --version'
}
}
}