Adds file
All checks were successful
sandbox/pipeline/head This commit looks good

This commit is contained in:
Torsten Wierschin 2026-08-03 23:59:50 +02:00
parent d111ce2d11
commit e6da29de38

23
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,23 @@
pipeline {
agent any
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Build') {
steps {
sh 'echo Build works'
}
}
stage('Test') {
steps {
sh 'echo Tests work'
}
}
}
}