ium_464914/Jenkinsfile

10 lines
154 B
Plaintext
Raw Normal View History

2024-03-20 14:34:00 +01:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
2024-03-26 13:19:45 +01:00
echo 'Test!'
2024-03-20 14:34:00 +01:00
}
}
}
}