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 { pipeline {
agent any agent { dockerfile true }
stages { stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') { stage('Test') {
steps { steps {
echo 'Testing..' sh 'node --version'
} sh 'svn --version'
}
stage('Deploy') {
steps {
echo 'Deploying....'
} }
} }
} }