ium_444517/Jenkinsfile_2

22 lines
470 B
Plaintext
Raw Normal View History

pipeline {
2022-04-03 12:30:04 +02:00
agent {
docker { image 'kambobdocker420/ium:version2.0' }
}
parameters {
2022-04-03 12:37:05 +02:00
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR'
)
}
stages {
stage('Stage 1') {
steps {
echo 'Hello world but for the second time!'
}
}
}
}