s416239-mlworkshops/Jenkinsfile

19 lines
630 B
Plaintext
Raw Normal View History

2020-04-03 14:12:27 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
2020-04-03 15:39:19 +02:00
echo 'Trigger Check'
checkout([$class: 'GitSCM', branches: [[name: '*/master']],
2020-04-03 16:37:36 +02:00
doGenerateSubmoduleConfigurations: false, extensions: [], gitTool:'Default',
2020-04-03 15:39:19 +02:00
submoduleCfg: [], userRemoteConfigs: [[url:
'https://git.wmi.amu.edu.pl/s416239/s416239-mlworkshops.git']]])
2020-04-03 15:47:05 +02:00
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
2020-04-03 16:52:06 +02:00
sh('chmod +x./lines.sh')
2020-04-03 16:13:27 +02:00
sh('./lines.sh')
archiveArtifacts 'lines_number.txt'
2020-04-03 14:12:27 +02:00
}
}
}
}