Created
March 1, 2023 11:21
-
-
Save askb/cc1ebae9461d9a617fb79a61fe912253 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# SPDX-License-Identifier: EPL-1.0 | |
############################################################################## | |
# Copyright (c) 2022 The Linux Foundation and others. | |
# | |
# All rights reserved. This program and the accompanying materials | |
# are made available under the terms of the Eclipse Public License v1.0 | |
# which accompanies this distribution, and is available at | |
# http://www.eclipse.org/legal/epl-v10.html | |
############################################################################## | |
# Script to run the sigul signing from within a CentOS7 docker container | |
if [ ! -z "${GIT_TAG}" ]; then | |
echo "Sign git tag: $GIT_TAG" | |
sigul --batch -c "${SIGUL_CONFIG}" sign-git-tag "${SIGUL_KEY}" "${GIT_TAG}" < "${SIGUL_PASSWORD}" | |
elif [ ! -z "${SIGN_DIR}" ]; then | |
echo "Sign files in: $SIGN_DIR" | |
set -e # Fail immediately if any if signing fails | |
find "${SIGN_DIR}" -type f ! -name "*.asc" \ | |
! -name "*.md5" \ | |
! -name "*.sha1" \ | |
! -name "_maven.repositories" \ | |
! -name "_remote.repositories" \ | |
! -name "*.lastUpdated" \ | |
! -name "maven-metadata-local.xml" \ | |
! -name "maven-metadata.xml" > ${WORKSPACE}/sign.lst | |
if [ -s ${WORKSPACE}/sign.lst ]; then | |
echo "Sign list is not empty" | |
fi | |
files_to_sign=() | |
while IFS= read -rd $'\n' line; do | |
files_to_sign+=("$line") | |
sigul --batch -c "${SIGUL_CONFIG}" sign-data -a -o "${line}.asc" "${SIGUL_KEY}" "${line}" < "${SIGUL_PASSWORD}" | |
done < ${WORKSPACE}/sign.lst | |
if [ "${#files_to_sign[@]}" -eq 0 ]; then | |
echo "ERROR: No files to sign. Quitting..." | |
exit 1 | |
fi | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment