ium_444417/Jenkinsfile3
s444417 e681fc3eb4
All checks were successful
s444417-training/pipeline/head This commit looks good
add ls check
2022-04-25 22:11:33 +02:00

11 lines
225 B
Plaintext

pipeline {
agent { dockerfile true }
stages {
stage('Test') {
steps {
copyArtifacts projectName: 's444417-create-dataset'
sh 'ls -la'
}
}
}
}