From a8cdd4d7f0c66a030ce328c27bd3eb2d96e77c2c Mon Sep 17 00:00:00 2001 From: Yi He Date: Tue, 26 Nov 2024 13:08:37 +0800 Subject: [PATCH] ci: add rhel 9.6 support --- .github/workflows/greenboot-ci.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.github/workflows/greenboot-ci.yaml b/.github/workflows/greenboot-ci.yaml index ef5f233..e18d566 100644 --- a/.github/workflows/greenboot-ci.yaml +++ b/.github/workflows/greenboot-ci.yaml @@ -106,3 +106,26 @@ jobs: secrets: "QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};STAGE_REDHAT_IO_USERNAME=${{ secrets.STAGE_REDHAT_IO_USERNAME }};STAGE_REDHAT_IO_TOKEN=${{ secrets.STAGE_REDHAT_IO_TOKEN }}" variables: "ARCH=x86_64" timeout: 90 + + RHEL-96-bootc: + needs: check-pull-request + if: ${{ needs.check-pull-request.outputs.allowed_user == 'true' }} + continue-on-error: true + runs-on: ubuntu-latest + + steps: + - name: Run the tests + uses: sclorg/testing-farm-as-github-action@v3.1.2 + with: + compose: RHEL-9.6.0-Nightly + api_key: ${{ secrets.TF_API_KEY }} + git_url: ${{ needs.check-pull-request.outputs.repo_url }} + git_ref: ${{ needs.check-pull-request.outputs.ref }} + # update_pull_request_status: true + # pull_request_status_name: "Centos-stream-9-bootc" + tmt_context: "arch=x86_64;distro=rhel-9-6" + tmt_plan_regex: bootc + tf_scope: private + secrets: "QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};STAGE_REDHAT_IO_USERNAME=${{ secrets.STAGE_REDHAT_IO_USERNAME }};STAGE_REDHAT_IO_TOKEN=${{ secrets.STAGE_REDHAT_IO_TOKEN }}" + variables: "ARCH=x86_64" + timeout: 90