pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
checkout scm;
copyArtifacts(projectName: 'ASR-eval');
sh 'service.sh';
}