From: Mike Marchetti Date: Mon, 19 Jun 2017 19:06:13 +0000 (-0400) Subject: enable archive fingerprints X-Git-Tag: v2.0.2~10 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=79df97b6ba5e23a5969c2a2fc271f089786514a3;hp=6228f56067acd1bddf15a161736327a49d99ac26;p=osm%2Fdevops.git enable archive fingerprints Change-Id: I7d80c09bda9849f2438d3076250017ebe9b9cb46 Signed-off-by: Mike Marchetti --- diff --git a/jenkins/common/install_common b/jenkins/common/install_common old mode 100644 new mode 100755 index ef8322bb..3304baed --- a/jenkins/common/install_common +++ b/jenkins/common/install_common @@ -43,8 +43,6 @@ done key_location=$REPOSITORY_BASE/$RELEASE/$REPOSITORY_KEY -# key pulled from https -[[ "$key_location" =~ https ]] || key_location=${key_location/http/https} curl $key_location | apt-key add - add-apt-repository -y "deb $REPOSITORY_BASE/$RELEASE $REPOSITORY SO UI RO osmclient openvim" diff --git a/jenkins/system/Jenkinsfile b/jenkins/system/Jenkinsfile index c3dcc0ac..8a04f236 100644 --- a/jenkins/system/Jenkinsfile +++ b/jenkins/system/Jenkinsfile @@ -80,6 +80,6 @@ node("${params.NODE}") { stage("Archive Artifacts") { sh "echo ${container_name} > build_version.txt" sh "tar -zcvf repo.tar.gz repo" - archiveArtifacts artifacts: "build_version.txt, repo.tar.gz" + archiveArtifacts artifacts: "build_version.txt, repo.tar.gz", fingerprint: true } }