Adding test Jenkinsfile

This commit is contained in:
Amber McCloughan 2022-08-31 23:23:10 -04:00
parent 0a996ad14c
commit a4f92773cf
1 changed files with 24 additions and 0 deletions

24
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,24 @@
pipeline {
agent 'python:3.10-slim-bullseye'
stages {
stage('Setup') {
steps {
sh 'Hello world!'
}
}
stage('Check') {
steps {
sh 'Hello galaxy!'
}
}
}
post {
always {
cleanWs()
}
}
}