2020-04-03 13:55:25 +02:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
stages {
|
|
|
|
stage('Stage 1') {
|
|
|
|
steps {
|
2020-04-03 15:24:22 +02:00
|
|
|
echo 'Hello World'
|
|
|
|
echo 'Trigger Check'
|
|
|
|
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], gitTool: 'Default', submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s416251/s416251-mlworkshops.git']]])
|
2020-04-03 15:40:47 +02:00
|
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
2020-04-03 13:55:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-03 15:24:22 +02:00
|
|
|
}
|
|
|
|
|
2020-04-03 15:40:47 +02:00
|
|
|
|
|
|
|
|