ium_444354/Jenkinsfile

10 lines
169 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello check world!'
}
}
}
}