Zaktualizuj 'Jenkinsfile'
This commit is contained in:
parent
4869d729a7
commit
867ddda391
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
@ -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!'
|
||||
|
Loading…
Reference in New Issue
Block a user