s452111-mlworkshops/Jenkinsfile

16 lines
320 B
Plaintext
Raw Normal View History

2020-04-03 14:50:49 +02:00
pipeline {
2020-04-21 19:19:04 +02:00
agent { dockerfile true }
2020-04-03 14:50:49 +02:00
stages {
stage('Hello') {
steps {
echo 'Hello World'
2020-04-03 15:26:02 +02:00
checkout scm;
copyArtifacts(projectName: 'ASR-eval');
2020-04-03 15:46:06 +02:00
sh 'chmod +x ./service.sh';
sh './service.sh';
2020-04-03 15:37:32 +02:00
archiveArtifacts artifacts: 'lines_count.txt', fingerprint: true;
2020-04-03 14:50:49 +02:00
}
}
}
}