-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enh(chore): package perl dependencies (cpan / net-curl / libssh-sessi…
…on ...) (#4755)
- Loading branch information
1 parent
831f859
commit dd7f18d
Showing
38 changed files
with
12,408 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
name: package-nfpm | ||
description: Package module using nfpm | ||
inputs: | ||
nfpm_file_pattern: | ||
description: The pattern of the nfpm configuration file(s) | ||
required: true | ||
package_extension: | ||
description: The package extension (deb or rpm) | ||
required: true | ||
distrib: | ||
description: The package distrib | ||
required: true | ||
major_version: | ||
description: The major version | ||
required: false | ||
minor_version: | ||
description: The minor version | ||
required: false | ||
release: | ||
description: The package release number | ||
required: false | ||
arch: | ||
description: The package architecture | ||
required: false | ||
commit_hash: | ||
description: The commit hash | ||
required: true | ||
cache_key: | ||
description: The package files cache key | ||
required: true | ||
rpm_gpg_key: | ||
description: The rpm gpg key | ||
required: true | ||
rpm_gpg_signing_key_id: | ||
description: The rpm gpg signing key identifier | ||
required: true | ||
rpm_gpg_signing_passphrase: | ||
description: The rpm gpg signing passphrase | ||
required: true | ||
|
||
runs: | ||
using: composite | ||
|
||
steps: | ||
- name: Import gpg key | ||
env: | ||
RPM_GPG_SIGNING_KEY: ${{ inputs.rpm_gpg_key }} | ||
run: echo -n "$RPM_GPG_SIGNING_KEY" > key.gpg | ||
shell: bash | ||
|
||
- name: Build ${{ inputs.package_extension }} files | ||
env: | ||
RPM_GPG_SIGNING_KEY_ID: ${{ inputs.rpm_gpg_signing_key_id }} | ||
RPM_GPG_SIGNING_PASSPHRASE: ${{ inputs.rpm_gpg_signing_passphrase }} | ||
run: | | ||
export MAJOR_VERSION="${{ inputs.major_version }}" | ||
export VERSION="${{ inputs.major_version }}.${{ inputs.minor_version }}" | ||
export RELEASE="${{ inputs.release }}" | ||
export ARCH="${{ inputs.arch }}" | ||
if [ "${{ inputs.package_extension }}" = "rpm" ]; then | ||
export DIST=".${{ inputs.distrib }}" | ||
export APACHE_USER="apache" | ||
export APACHE_GROUP="apache" | ||
else | ||
export DIST="" | ||
export APACHE_USER="www-data" | ||
export APACHE_GROUP="www-data" | ||
fi | ||
MAJOR_LEFT=$( echo $MAJOR_VERSION | cut -d "." -f1 ) | ||
MAJOR_RIGHT=$( echo $MAJOR_VERSION | cut -d "-" -f1 | cut -d "." -f2 ) | ||
BUMP_MAJOR_RIGHT=$(( MAJOR_RIGHT_PART + 1 )) | ||
if [ "$MAJOR_RIGHT" = "04" ]; then | ||
BUMP_MAJOR_LEFT="$MAJOR_LEFT" | ||
BUMP_MAJOR_RIGHT="10" | ||
else | ||
BUMP_MAJOR_LEFT=$(( $MAJOR_LEFT + 1 )) | ||
BUMP_MAJOR_RIGHT="04" | ||
fi | ||
export NEXT_MAJOR_VERSION="$BUMP_MAJOR_LEFT.$BUMP_MAJOR_RIGHT" | ||
export RPM_SIGNING_KEY_FILE="$(pwd)/key.gpg" | ||
export RPM_SIGNING_KEY_ID="$RPM_GPG_SIGNING_KEY_ID" | ||
export NFPM_RPM_PASSPHRASE="$RPM_GPG_SIGNING_PASSPHRASE" | ||
for FILE in ${{ inputs.nfpm_file_pattern }}; do | ||
DIRNAME=$(dirname $FILE) | ||
BASENAME=$(basename $FILE) | ||
cd $DIRNAME | ||
sed -i "s/@APACHE_USER@/$APACHE_USER/g" $BASENAME | ||
sed -i "s/@APACHE_GROUP@/$APACHE_GROUP/g" $BASENAME | ||
sed -i "s/@COMMIT_HASH@/${{ inputs.commit_hash }}/g" $BASENAME | ||
nfpm package --config $BASENAME --packager ${{ inputs.package_extension }} | ||
cd - | ||
mv $DIRNAME/*.${{ inputs.package_extension }} ./ | ||
done | ||
shell: bash | ||
|
||
- name: Cache packages | ||
uses: actions/cache/save@v3 | ||
with: | ||
path: ./*.${{ inputs.package_extension }} | ||
key: ${{ inputs.cache_key }} | ||
|
||
# Update if condition to true to get packages as artifacts | ||
- if: ${{ false }} | ||
name: Upload package artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: packages-${{ inputs.distrib }} | ||
path: ./*.${{ inputs.package_extension}} | ||
retention-days: 1 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: "promote testing to stable" | ||
description: "Promote testing packages to stable." | ||
inputs: | ||
artifactory_token: | ||
description: "Artifactory token" | ||
required: true | ||
module: | ||
description: "Module" | ||
required: true | ||
distrib: | ||
description: "The distribution used for packaging" | ||
required: true | ||
stability: | ||
description: "The package stability (stable, testing, unstable)" | ||
required: true | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- uses: jfrog/setup-jfrog-cli@v3 | ||
env: | ||
JF_URL: https://centreon.jfrog.io | ||
JF_ACCESS_TOKEN: ${{ inputs.artifactory_token }} | ||
|
||
- name: Promote RPM packages to stable | ||
if: ${{ startsWith(inputs.distrib, 'el') }} | ||
run: | | ||
set -x | ||
echo "[DEBUG] - Distrib: ${{ inputs.distrib }}" | ||
for ARCH in "noarch" "x86_64"; do | ||
echo "[DEBUG] - Get path of $ARCH testing artifacts to promote to stable." | ||
SRC_PATHS=$(jf rt s --include-dirs rpm-plugins/${{ inputs.distrib }}/testing/$ARCH/${{ inputs.module }}/*.rpm | jq -r '.[].path') | ||
if [[ ${SRC_PATHS[@]} ]]; then | ||
for SRC_PATH in ${SRC_PATHS[@]}; do | ||
echo "[DEBUG] - Source path found: $SRC_PATH" | ||
done | ||
else | ||
echo "[DEBUG] - No source path found." | ||
continue | ||
fi | ||
echo "[DEBUG] - Build $ARCH target path." | ||
TARGET_PATH="rpm-plugins/${{ inputs.distrib }}/${{ inputs.stability }}/$ARCH/RPMS/${{ inputs.module }}/" | ||
echo "[DEBUG] - Target path: $TARGET_PATH" | ||
echo "[DEBUG] - Promoting $ARCH testing artifacts to stable." | ||
for ARTIFACT in ${SRC_PATHS[@]}; do | ||
echo "[DEBUG] - Promoting $ARTIFACT to stable." | ||
jf rt cp $ARTIFACT $TARGET_PATH --flat=true | ||
done | ||
done | ||
shell: bash | ||
|
||
- name: Promote DEB package to stable | ||
if: ${{ startsWith(inputs.distrib, 'bullseye') }} | ||
run: | | ||
echo "[DEBUG] - Distrib: ${{ inputs.distrib }}" | ||
echo "[DEBUG] - Get path of testing DEB packages to promote to stable." | ||
SRC_PATHS=$(jf rt s --include-dirs apt-plugins-testing/pool/${{ inputs.module }}/*.deb | jq -r '.[].path') | ||
if [[ ${SRC_PATHS[@]} ]]; then | ||
for SRC_PATH in ${SRC_PATHS[@]}; do | ||
echo "[DEBUG] - Source path found: $SRC_PATH" | ||
done | ||
else | ||
echo "[DEBUG] - No source path found." | ||
continue | ||
fi | ||
echo "[DEBUG] - Build target path." | ||
TARGET_PATH="apt-plugins-${{ inputs.stability }}/pool/${{ inputs.module }}/" | ||
echo "[DEBUG] - Target path: $TARGET_PATH" | ||
echo "[DEBUG] - Promoting DEB testing artifacts to stable." | ||
for ARTIFACT in ${SRC_PATHS[@]}; do | ||
echo "[DEBUG] - Promoting $ARTIFACT to stable." | ||
jf rt cp $ARTIFACT $TARGET_PATH --flat=true | ||
done | ||
shell: bash |
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
Oops, something went wrong.