Commit b4a6e85c authored by etsi cti's avatar etsi cti
Browse files

Add new file

parents
Loading
Loading
Loading
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'
			}
		}
	}
}