Added Jenkinsfile

This commit is contained in:
boat cow 2023-04-06 11:48:21 -04:00
parent 0962ed7e8f
commit 8a3d46fe66

17
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,17 @@
pipeline {
agent any
stages {
stage('build') {
steps {
echo 'build'
}
}
stage('run') {
steps {
echo 'run'
}
}
}
}