s416239-mlworkshops/Jenkinsfile

15 lines
443 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 15:41:39 +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 14:12:27 +02:00
}
}
}
}