ium_487194/Jenkinsfile

20 lines
611 B
Plaintext
Raw Normal View History

2023-03-28 20:15:03 +02:00
pipeline {
agent any
stages {
2023-03-28 20:45:54 +02:00
stage('Checkout') {
steps {
checkout([$class: 'GitSCM',
branches: [[name: '*/master']],
doGenerateSubmoduleConfigurations: false,
extensions: [],
submoduleCfg: [],
2023-03-28 20:46:19 +02:00
userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s487194/ium_487194/_edit/master/Jenkinsfile']]])
2023-03-28 20:45:54 +02:00
}
}
2023-03-28 20:15:03 +02:00
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}