Zaktualizuj 'Jenkinsfile'
This commit is contained in:
parent
4869d729a7
commit
867ddda391
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
@ -1,6 +1,16 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
stages {
|
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') {
|
stage('Stage 1') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Hello world!'
|
echo 'Hello world!'
|
||||||
|
Loading…
Reference in New Issue
Block a user