s452111-mlworkshops/Jenkinsfile

14 lines
204 B
Plaintext
Raw Normal View History

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 14:50:49 +02:00
}
}
}
}