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: [],
|
|
|
|
userRemoteConfigs: [[url: 'https://github.com/username/repository.git']]])
|
|
|
|
}
|
|
|
|
}
|
2023-03-28 20:15:03 +02:00
|
|
|
stage('Stage 1') {
|
|
|
|
steps {
|
|
|
|
echo 'Hello world!'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|