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:34:24 +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:13:27 +02:00
|
|
|
sh('chmood+x./lines.sh')
|
|
|
|
sh('./lines.sh')
|
|
|
|
archiveArtifacts 'lines_number.txt'
|
2020-04-03 14:12:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|