ium_464937/Jenkinsfile
Szymon Bartanowicz e9e4d317c4 added Jenkins file
2024-03-26 17:53:46 +01:00

10 lines
147 B
Groovy

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