ium_444356/Jenkinsfile_docker2

21 lines
391 B
Plaintext
Raw Normal View History

2022-04-01 14:07:51 +02:00
pipeline {
2022-04-02 17:17:26 +02:00
agent {
docker {
image 'czajson99/ium:v8'
}
}
2022-04-02 15:05:37 +02:00
parameters{
buildSelector(
defaultSelector: lastSuccessful(),
name: 'BUILD_SELECTOR',
description: 'Which build to use for copying artifacts'
)
}
stages {
stage("Script") {
steps {
2022-04-02 17:17:26 +02:00
sh "ls -al"
2022-04-02 15:05:37 +02:00
}
2022-04-01 14:07:51 +02:00
}
}
}