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