Clean up some code in the pipeline.

This commit is contained in:
Manuele Simi 2019-10-16 21:09:11 -04:00
parent b40f49ed36
commit f74718b5e7
1 changed files with 3 additions and 5 deletions

8
Jenkinsfile vendored
View File

@ -5,7 +5,6 @@ import org.yaml.snakeyaml.Yaml
def (options, maven_local_repo_path, maven_settings_file) = ['', '', '']
def maven_jdk = 'OpenJDK 8'
def agent_root_folder = '/var/lib/jenkins/.m2'
//def agent_label = 'pipeline-agent-garr' //'pipeline-agent'
if (params.Type == 'SNAPSHOT-DRY-RUN') {
echo "Configure Maven for SNAPSHOT-DRY-RUN artifacts"
@ -26,7 +25,7 @@ if (params.Type == 'RELEASE-DRY-RUN') {
maven_settings_file = "jenkins-releases-dry-run-settings.xml"
}
if (params.Type == 'STAGING') {
echo "Configure Maven for RELEASE-STAGING artifacts"
echo "Configure Maven for STAGING artifacts"
options = ''
maven_local_repo_path = "local-staging"
maven_settings_file = "jenkins-staging-settings.xml"
@ -36,8 +35,8 @@ if (params.Type == 'RELEASE') {
options = ''
maven_local_repo_path = "local-releases"
maven_settings_file = "jenkins-releases-settings.xml"
echo "This will fail. RELEASES are currently disabled until further testing."
}
echo "Use settings file at ${maven_settings_file}"
echo "Use local repo at ${maven_local_repo_path}"
echo "Release number: ${params.gCube_release_version}"
@ -45,8 +44,7 @@ echo "Clean up gcube local artifacts? ${params.cleanup_gcube_artifacts}"
echo "Clean up all local artifacts? ${params.cleanup_local_repo}"
//locate where this release is
//locate the release file
String releaseURL = "https://code-repo.d4science.org/gCubeCI/gCubeRelease/raw/branch/master/releases/gcube-${gCube_release_version}.yaml"
println "Querying ${releaseURL}"