diff --git a/.github/workflows/perl-openwsman.yml b/.github/workflows/perl-openwsman.yml new file mode 100644 index 000000000..25b35babf --- /dev/null +++ b/.github/workflows/perl-openwsman.yml @@ -0,0 +1,228 @@ +name: perl-openwsman + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +on: + workflow_dispatch: + pull_request: + paths: + - "dependencies/perl-openwsman/**" + push: + branches: + - develop + - master + paths: + - "dependencies/perl-openwsman/**" + +jobs: + get-environment: + uses: ./.github/workflows/get-environment.yml + + package: + needs: [get-environment] + + strategy: + fail-fast: false + matrix: + include: + - image: packaging-plugins-alma8 + distrib: el8 + package_extension: rpm + runner: ubuntu-22.04 + arch: amd64 + - image: packaging-plugins-alma9 + distrib: el9 + package_extension: rpm + runner: ubuntu-22.04 + arch: amd64 + - image: packaging-plugins-bullseye + distrib: bullseye + package_extension: deb + runner: ubuntu-22.04 + arch: amd64 + - image: packaging-plugins-bullseye-arm64 + distrib: bullseye + package_extension: deb + runner: ["self-hosted", "collect-arm64"] + arch: arm64 + + runs-on: ${{ matrix.runner }} + + container: + image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/${{ matrix.image }} + credentials: + username: ${{ secrets.DOCKER_REGISTRY_ID }} + password: ${{ secrets.DOCKER_REGISTRY_PASSWD }} + + name: package ${{ matrix.distrib }} ${{ matrix.arch }} + + steps: + - name: Checkout sources + uses: actions/checkout@v4 + + - name: Install locally sblim-sfcc + run: | + if [ "${{ matrix.distrib }}" = "bullseye" ]; then + apt-get update + apt-get install -y libcurl4-openssl-dev + else + dnf install -y wget automake libtool libcurl-devel gcc-c++ + fi + + cd /tmp + wget -O - https://github.com/kkaempf/sblim-sfcc/archive/refs/tags/SFCC_2_2_8.tar.gz|tar zxvf - + cd sblim-sfcc-SFCC_2_2_8 + ./autoconfiscate.sh + ./configure --prefix=/usr + make + make install + shell: bash + + - name: Build openwsman + run: | + if [ "${{ matrix.distrib }}" = "bullseye" ]; then + apt-get install -y cmake libssl-dev libpam-dev swig libxml2-dev + else + if [ "${{ matrix.distrib }}" = "el9" ]; then + dnf install -y 'dnf-command(config-manager)' + dnf config-manager --set-enabled crb + fi + dnf install -y cmake pam-devel swig libxml2-devel openssl-devel + fi + + cd /tmp + wget -O - https://github.com/Openwsman/openwsman/archive/refs/tags/v2.7.2.tar.gz|tar zxvf - + cd openwsman-2.7.2/ + mkdir build + cd build + cmake .. -DBUILD_PYTHON=No -DBUILD_PYTHON3=No -DBUILD_JAVA=No -DBUILD_RUBY=No -DBUILD_PERL=Yes + make + + - name: Set package name and paths according to distrib + run: | + if [ "${{ matrix.distrib }}" = "bullseye" ]; then + NAME="libopenwsman-perl" + if [ "${{ matrix.arch }}" = "amd64" ]; then + PERL_VENDORARCH="/usr/lib/x86_64-linux-gnu/perl5/5.32" + else + PERL_VENDORARCH="/usr/lib/aarch64-linux-gnu/perl5/5.32" + fi + else + NAME="openwsman-perl" + if [ "${{ matrix.distrib }}" = "el8" ]; then + PERL_VENDORARCH="/usr/local/lib64/perl5" + else + PERL_VENDORARCH="/usr/local/lib64/perl5/5.32" + fi + fi + + sed -i "s/@NAME@/$NAME/g" dependencies/perl-openwsman/perl-openwsman.yaml + sed -i "s#@PERL_VENDORARCH@#$PERL_VENDORARCH#g" dependencies/perl-openwsman/perl-openwsman.yaml + + cat dependencies/perl-openwsman/perl-openwsman.yaml + shell: bash + + - name: Package + uses: ./.github/actions/package + with: + nfpm_file_pattern: "dependencies/perl-openwsman/perl-openwsman.yaml" + distrib: ${{ matrix.distrib }} + package_extension: ${{ matrix.package_extension }} + version: ${{ needs.get-environment.outputs.version }} + release: ${{ needs.get-environment.outputs.release }} + commit_hash: ${{ github.sha }} + cache_key: cache-${{ github.sha }}-${{ matrix.package_extension}}-perl-openwsman-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} + rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} + rpm_gpg_signing_key_id: ${{ secrets.RPM_GPG_SIGNING_KEY_ID }} + rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }} + + # set condition to true if artifacts are needed + - if: ${{ false }} + name: Upload package artifacts + uses: actions/upload-artifact@v3 + with: + name: packages-${{ matrix.distrib }}-${{ matrix.arch }} + path: ./*.${{ matrix.package_extension}} + retention-days: 1 + + deliver-rpm: + needs: [get-environment, package] + if: ${{ contains(fromJson('["testing", "unstable"]'), needs.get-environment.outputs.stability) }} + runs-on: [self-hosted, common] + + strategy: + matrix: + distrib: [el8, el9] + + name: Deliver ${{ matrix.distrib }} + + steps: + - name: Checkout sources + uses: actions/checkout@v4 + + - name: Delivery + uses: ./.github/actions/rpm-delivery + with: + module_name: perl-openwsman-amd64 + distrib: ${{ matrix.distrib }} + artifactory_token: ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }} + cache_key: cache-${{ github.sha }}-rpm-perl-openwsman-${{ matrix.distrib }}-amd64-${{ github.head_ref || github.ref_name }} + stability: ${{ needs.get-environment.outputs.stability }} + + deliver-deb: + needs: [get-environment, package] + if: ${{ contains(fromJson('["testing", "unstable"]'), needs.get-environment.outputs.stability) }} + runs-on: [self-hosted, common] + + strategy: + matrix: + include: + - distrib: bullseye + arch: amd64 + - distrib: bullseye + arch: arm64 + + name: Deliver ${{ matrix.distrib }} ${{ matrix.arch }} + + steps: + - name: Checkout sources + uses: actions/checkout@v4 + + - name: Delivery + uses: ./.github/actions/deb-delivery + with: + module_name: perl-openwsman-${{ matrix.arch }} + distrib: ${{ matrix.distrib }} + artifactory_token: ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }} + cache_key: cache-${{ github.sha }}-deb-perl-openwsman-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} + stability: ${{ needs.get-environment.outputs.stability }} + + promote: + needs: [get-environment] + if: ${{ contains(fromJson('["stable"]'), needs.get-environment.outputs.stability) }} + runs-on: [self-hosted, common] + strategy: + matrix: + include: + - distrib: el8 + arch: amd64 + - distrib: el9 + arch: amd64 + - distrib: bullseye + arch: amd64 + - distrib: bullseye + arch: arm64 + + steps: + - name: Checkout sources + uses: actions/checkout@v4 + + - name: Promote ${{ matrix.distrib }} ${{ matrix.arch }} to stable + uses: ./.github/actions/promote-to-stable + with: + artifactory_token: ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }} + module: perl-openwsman-${{ matrix.arch }} + distrib: ${{ matrix.distrib }} + stability: ${{ needs.get-environment.outputs.stability }} diff --git a/dependencies/perl-openwsman/perl-openwsman.yaml b/dependencies/perl-openwsman/perl-openwsman.yaml new file mode 100644 index 000000000..770411f81 --- /dev/null +++ b/dependencies/perl-openwsman/perl-openwsman.yaml @@ -0,0 +1,44 @@ +name: "@NAME@" +arch: "${ARCH}" +platform: "linux" +version_schema: "none" +version: "2.7.2" +release: "2${DIST}" +section: "default" +priority: "optional" +maintainer: "Centreon " +description: | + Openwsman is an open source implementation of WS-Management; enabling the in-band management of Linux/uni*/Windows platforms. + Openwsman supports the generic WS-Management protocol as well as specific protocol extensions for the Common Information Model (CIM) + Web Services for Management (WS-Management, WS-MAN) is a specification for managing computer systems using Web services standards. + WS-Management is a SOAP based transport protocol for managing (create, enumerate, access, change, destroy) resources. + Commit: @COMMIT_HASH@ +vendor: "Centreon" +homepage: "https://www.centreon.com" +license: "Apache-2.0" + +contents: + - src: "/tmp/openwsman-2.7.2/build/bindings/perl/openwsman.so" + dst: "@PERL_VENDORARCH@/" + file_info: + mode: 0644 + + - src: "/tmp/openwsman-2.7.2/build/bindings/perl/openwsman.pm" + dst: "@PERL_VENDORARCH@/" + file_info: + mode: 0644 + +overrides: + rpm: + provides: + - perl(openwsman) + deb: + provides: + - libopenwsman-perl + +rpm: + summary: Perl interface for openwsman + compression: zstd + signature: + key_file: ${RPM_SIGNING_KEY_FILE} + key_id: ${RPM_SIGNING_KEY_ID}