Zaktualizuj 'Jenkinsfile'

This commit is contained in:
Witold Woch 2023-03-28 20:45:54 +02:00
parent 4869d729a7
commit 867ddda391

10
Jenkinsfile vendored
View File

@ -1,6 +1,16 @@
pipeline {
agent any
stages {
stage('Checkout') {
steps {
checkout([$class: 'GitSCM',
branches: [[name: '*/master']],
doGenerateSubmoduleConfigurations: false,
extensions: [],
submoduleCfg: [],
userRemoteConfigs: [[url: 'https://github.com/username/repository.git']]])
}
}
stage('Stage 1') {
steps {
echo 'Hello world!'