ium_464937/Jenkinsfile
Szymon Bartanowicz 424e4b2478 added Jenkins file
2024-03-26 17:58:03 +01:00

10 lines
150 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'elo 420 v2'
}
}
}
}