Test/Jenkinsfile
Basti Lathe e20ae48597
All checks were successful
gitea_spaeth.biz/Test/pipeline/head This commit looks good
initial upload
2022-12-07 21:25:10 +01:00

11 lines
151 B
Groovy

pipeline {
agent any
stages {
stage('Do nothing') {
steps {
sh '/bin/true'
}
}
}
}