ium_464914/Jenkinsfile

10 lines
167 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'zadziałaj prosze!'
}
}
}
}