s452111-mlworkshops/Jenkinsfile
2020-04-03 15:37:32 +02:00

15 lines
272 B
Groovy

pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
checkout scm;
copyArtifacts(projectName: 'ASR-eval');
sh 'service.sh';
archiveArtifacts artifacts: 'lines_count.txt', fingerprint: true;
}
}
}
}