add jenkinsfile

This commit is contained in:
Sheaza 2024-03-20 14:29:57 +01:00
parent 1e46d3581d
commit 9037135012
1 changed files with 10 additions and 0 deletions

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}