ium_444517/Jenkinsfile_2

22 lines
470 B
Plaintext

pipeline {
agent {
docker { image 'kambobdocker420/ium:version2.0' }
}
parameters {
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!'
}
}
}
}