Loading Jenkinsfile 0 → 100644 +21 −0 Original line number Diff line number Diff line pipeline{ agent { } stages { stage('Resolve') { steps{ sh 'echo Validate stage' checkout changelog: false, poll: false, scm: [$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'f9a9fd70-ea8b-4872-a9d5-d1fb1cf8123e', url: 'git@forge.etsi.org:3GPP/OPENAPI.git']]] } } stage('Validate') { steps{ sh 'echo Validate stage' } } stage('Deploy to FTP') { steps{ sh 'echo DEPLOY stage' } } } } Loading
Jenkinsfile 0 → 100644 +21 −0 Original line number Diff line number Diff line pipeline{ agent { } stages { stage('Resolve') { steps{ sh 'echo Validate stage' checkout changelog: false, poll: false, scm: [$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'f9a9fd70-ea8b-4872-a9d5-d1fb1cf8123e', url: 'git@forge.etsi.org:3GPP/OPENAPI.git']]] } } stage('Validate') { steps{ sh 'echo Validate stage' } } stage('Deploy to FTP') { steps{ sh 'echo DEPLOY stage' } } } }