This commit is contained in:
Blueberry ! 2020-12-03 16:49:52 +01:00
parent b7d2927da9
commit ec2f35c06d

11
Jenkinsfile vendored
View File

@ -1,11 +1,12 @@
Jenkinsfile (Declarative Pipeline)
pipeline { pipeline {
agent any agent any
stages { stages {
stage('build') { stage('build') {
steps { steps {
echo 'hello world' echo 'building..'
} }
} }
} }
} }