add Jenkinsfile

This commit is contained in:
bintangadinandra 2024-07-10 20:58:35 -04:00
parent d8fcd11e67
commit edd2f3247d

10
Jenkinsfile vendored Normal file
View file

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