s442676-mlworkshops/Jenkinsfile

11 lines
281 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
copyArtifacts filter: '*.csv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
}
}
}
}