schedulord-frontend/Jenkinsfile

10 lines
170 B
Plaintext
Raw Normal View History

2022-06-08 17:35:09 +00:00
pipeline {
agent { dockerfile true }
stages {
stage('Test') {
steps {
echo "Build has worked!"
}
}
}
}