Zaktualizuj 'Jenkinsfile'

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

32
Jenkinsfile vendored
View File

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