Commit a5cf44b3 authored by carignani's avatar carignani
Browse files

Delete Jenkinsfile-playground

parent 7afc594e
Loading
Loading
Loading
Loading

Jenkinsfile-playground

deleted100644 → 0
+0 −36
Original line number Diff line number Diff line
pipeline{
    options {
        disableConcurrentBuilds()
        gitLabConnection('Gitlab at Forge')
    }
	agent any
	stages {
    	stage('Resolve') {
    		steps{
    		    sh 'echo Validate stage'
    		    updateGitlabCommitStatus name: 'jenkins', state: 'pending'
    			checkout changelog: false, poll: false, scm: [$class: 'GitSCM', branches: [[name: 'origin/${env.gitlabSourceBranch}']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'f9a9fd70-ea8b-4872-a9d5-d1fb1cf8123e', url: 'git@forge.etsi.org:3GPP/openapis-playground.git']]]
				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:cti/forge-tools/3gpp-scripts.git']]]
			}
		}
		stage('Validate') {
    		steps{
    			sh 'echo Validate stage'
			sh 'bash ./validate-all.sh'
			}
		}
		stage('Deploy to FTP') {
    		steps{
    			sh 'echo DEPLOY stage'
			}
		}
	}
	post {
    	success {
    	    updateGitlabCommitStatus name: 'jenkins', state: 'success'
    	}
    	failure {
    	    updateGitlabCommitStatus name: 'jenkins', state: 'failed'
    	}
	}
}