From 191d5b1af1c74896bcee0d16dc7e1fff9f22f82d Mon Sep 17 00:00:00 2001 From: alvarocabanas Date: Thu, 2 Jan 2025 13:03:55 +0100 Subject: [PATCH] Add FIPS molecule tests. --- .github/workflows/component_molecule_packaging.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/component_molecule_packaging.yml b/.github/workflows/component_molecule_packaging.yml index 58ac379bb..82f508f8d 100644 --- a/.github/workflows/component_molecule_packaging.yml +++ b/.github/workflows/component_molecule_packaging.yml @@ -21,10 +21,19 @@ jobs: name: Test package installation runs-on: ubuntu-latest steps: - - uses: newrelic/pkg-installation-testing-action@v1 + - name: Test NON-FIPS package installation + uses: newrelic/pkg-installation-testing-action@v1 with: gpg_key: 'https://download.newrelic.com/infrastructure_agent/gpg/newrelic-infra.gpg' repo_base_url: ${{ inputs.REPO_ENDPOINT }} package_name: 'newrelic-infra' package_version: ${{ inputs.TAG }} platforms: "al2,al2023,debian-bullseye,debian-bookworm,redhat8,redhat9,suse15.3,suse15.4,suse15.5,suse15.6,ubuntu1604,ubuntu1804,ubuntu2004,ubuntu2204,ubuntu2404" + - name: Test FIPS package installation + uses: newrelic/pkg-installation-testing-action@v1 + with: + gpg_key: 'https://download.newrelic.com/infrastructure_agent/gpg/newrelic-infra.gpg' + repo_base_url: ${{ inputs.REPO_ENDPOINT }} + package_name: 'newrelic-infra-fips' + package_version: ${{ inputs.TAG }} + platforms: "al2,al2023,debian-bullseye,debian-bookworm,redhat8,redhat9,suse15.3,suse15.4,suse15.5,suse15.6,ubuntu1604,ubuntu1804,ubuntu2004,ubuntu2204,ubuntu2404"