Adding test Jenkinsfile
This commit is contained in:
parent
0a996ad14c
commit
a4f92773cf
|
@ -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()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue