schedulord-frontend/Jenkinsfile
James@SCF-GC 41b32f50ec
All checks were successful
gitea_dndsources/schedulord-frontend/pipeline/head This commit looks good
Initial Dockerfile and Jenkinsfile
2022-06-08 19:35:09 +02:00

10 lines
170 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Test') {
steps {
echo "Build has worked!"
}
}
}
}