'jenkins'

This commit is contained in:
Blueberry ! 2020-12-01 18:23:16 +01:00
parent 590671d610
commit bc0d7f7154
2 changed files with 11 additions and 0 deletions

BIN
README.odt Normal file

Binary file not shown.

11
jenkinsfile.txt Normal file
View File

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