16 lines
320 B
Groovy
16 lines
320 B
Groovy
pipeline {
|
|
agent { dockerfile true }
|
|
stages {
|
|
stage('Hello') {
|
|
steps {
|
|
echo 'Hello World'
|
|
checkout scm;
|
|
copyArtifacts(projectName: 'ASR-eval');
|
|
sh 'chmod +x ./service.sh';
|
|
sh './service.sh';
|
|
archiveArtifacts artifacts: 'lines_count.txt', fingerprint: true;
|
|
}
|
|
}
|
|
}
|
|
}
|