2020-04-03 14:50:49 +02:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
stages {
|
|
|
|
stage('Hello') {
|
|
|
|
steps {
|
|
|
|
echo 'Hello World'
|
2020-04-03 15:26:02 +02:00
|
|
|
checkout scm;
|
|
|
|
copyArtifacts(projectName: 'ASR-eval');
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|