s416296-plots/Jenkinsfile

11 lines
374 B
Plaintext
Raw Normal View History

2020-04-19 20:41:51 +02:00
pipeline {
2020-04-19 20:43:50 +02:00
agent { any }
2020-04-19 20:41:51 +02:00
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s416296/s416296-plots.git']]])
}
}
}
}