Skip to content

Commit

Permalink
Do not upload debian dbgsym packages
Browse files Browse the repository at this point in the history
Change-Id: I5bcf3e143ea663774af4ae534703b2b20eedfc41
  • Loading branch information
LarsMichelsen committed Jun 23, 2019
1 parent f121202 commit dcaa658
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion buildscripts/scripts/nightly-build.jenkins
Expand Up @@ -295,7 +295,10 @@ try {
if ((scm.branches[0].name == 'master' || scm.branches[0].name ==~ '[0-9]+\\.[0-9]+\\.[0-9]+') && JOB_BASE_NAME == 'nightly_build_containerized') {
sh """
cd ${ARCHIVE_DIR}
rsync -av -e "ssh -o StrictHostKeyChecking=no -i ${RELEASE_KEY_DIR}" \
rsync -av \
--exclude '*dbgsym*.deb' \
-e "ssh -o StrictHostKeyChecking=no \
-i ${RELEASE_KEY_DIR}" \
${PACKAGE_DIR}/${CMK_VERS} \
bauwelt@mathias-kettner.de:${PACKAGE_DIR}
"""
Expand Down
5 changes: 4 additions & 1 deletion buildscripts/scripts/nightly-cmk-container.jenkins
Expand Up @@ -51,7 +51,10 @@ node {
cd ${PACKAGE_DIR}/${CMK_VERS}
rm -f HASHES
${DAILY_DATA}/git/buildscripts/scripts/sign-packages.sh ${CMK_VERS}
rsync -av -e "ssh -o StrictHostKeyChecking=no -i ${RELEASE_KEY_DIR}" \
rsync -av \
--exclude '*dbgsym*.deb' \
-e "ssh -o StrictHostKeyChecking=no \
-i ${RELEASE_KEY_DIR}" \
${PACKAGE_DIR}/${CMK_VERS} \
bauwelt@mathias-kettner.de:${PACKAGE_DIR}
"""
Expand Down

0 comments on commit dcaa658

Please sign in to comment.