ium_444417/Jenkinsfile3
s444417 c0f1c1f984
All checks were successful
s444417-training/pipeline/head This commit looks good
cp artifacts
2022-04-25 21:31:57 +02:00

12 lines
232 B
Plaintext

pipeline {
agent {
docker { image 'mikolajk/ium:latest' }
}
stages {
stage('Test') {
steps {
copyArtifacts projectName: 's444417-create-dataset'
}
}
}
}