Add Jenkinsfile (#1151)

Co-authored-by: Richie Bendall <richiebendall@gmail.com>
Co-authored-by: MrBrain295 <66077254+MrBrain295@users.noreply.github.com>
This commit is contained in:
GabrielePuliti
2021-10-10 02:52:02 +02:00
committed by GitHub
parent da81ec50f0
commit a05b31a34a
2 changed files with 12 additions and 1 deletions

10
j/Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Print Message') {
steps {
echo 'Hello World'
}
}
}
}