IUM_s464980/Jenkinsfile

10 lines
152 B
Plaintext
Raw Normal View History

2024-03-20 14:29:57 +01:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}