docker to Jenkinsfile in dataset-stats

This commit is contained in:
s434695 2021-04-11 16:21:20 +02:00
parent 1791d3b537
commit a4ac127976

View File

@ -1,5 +1,7 @@
pipeline { pipeline {
agent any agent {
docker { image 'shroomy/ium:1' }
}
parameters { parameters {
buildSelector(defaultSelector: buildSelector(defaultSelector:
lastSuccessful(), lastSuccessful(),
@ -7,6 +9,11 @@ pipeline {
name: 'BUILD_SELECTOR') name: 'BUILD_SELECTOR')
} }
stages { stages {
stage('Test') {
steps {
sh 'cat /etc/issue'
}
}
stage("copyArtifacts"){ stage("copyArtifacts"){
steps { steps {
copyArtifacts fingerprintArtifacts: true, copyArtifacts fingerprintArtifacts: true,