This repository has been archived by the owner on May 28, 2024. It is now read-only.
[DO NOT MERGE]test: test fedora image #241
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
--- | ||
name: bib image Test | ||
on: | ||
issue_comment: | ||
types: | ||
- created | ||
jobs: | ||
pr-info: | ||
if: ${{ github.event.issue.pull_request && | ||
Check failure on line 11 in .github/workflows/bib-image.yml GitHub Actions / bib image TestInvalid workflow file
|
||
(endsWith(github.event.comment.body, '/test-rhel95') || | ||
endsWith(github.event.comment.body, '/test-rhel95-bib-image') || | ||
endsWith(github.event.comment.body, '/test-rhel94') || | ||
endsWith(github.event.comment.body, '/test-rhel94-bib-image') || | ||
endsWith(github.event.comment.body, '/test-rhel9y-snapshot') || | ||
endsWith(github.event.comment.body, '/test-rhel9y-snapshot-bib-image') || | ||
endsWith(github.event.comment.body, '/test-cs9') || | ||
endsWith(github.event.comment.body, '/test-cs9-bib-image') || | ||
endsWith(github.event.comment.body, '/test-cs9-dev') || | ||
endsWith(github.event.comment.body, '/test-cs9-dev-bib-image')) || | ||
endsWith(github.event.comment.body, '/test-fedora-40') || | ||
endsWith(github.event.comment.body, '/test-fedora-40-bib-image') || | ||
endsWith(github.event.comment.body, '/test-fedora-41') || | ||
endsWith(github.event.comment.body, '/test-fedora-41-bib-image')) }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Query author repository permissions | ||
uses: octokit/[email protected] | ||
id: user_permission | ||
with: | ||
route: GET /repos/${{ github.repository }}/collaborators/${{ github.event.sender.login }}/permission | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# restrict running of tests to users with admin or write permission for the repository | ||
# see https://docs.github.com/en/free-pro-team@latest/rest/reference/repos#get-repository-permissions-for-a-user | ||
- name: Check if user does have correct permissions | ||
if: contains('admin write', fromJson(steps.user_permission.outputs.data).permission) | ||
id: check_user_perm | ||
run: | | ||
echo "User '${{ github.event.sender.login }}' has permission '${{ fromJson(steps.user_permission.outputs.data).permission }}' allowed values: 'admin', 'write'" | ||
echo "allowed_user=true" >> $GITHUB_OUTPUT | ||
- name: Get information for pull request | ||
uses: octokit/[email protected] | ||
id: pr-api | ||
with: | ||
route: GET /repos/${{ github.repository }}/pulls/${{ github.event.issue.number }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
outputs: | ||
allowed_user: ${{ steps.check_user_perm.outputs.allowed_user }} | ||
sha: ${{ fromJson(steps.pr-api.outputs.data).head.sha }} | ||
ref: ${{ fromJson(steps.pr-api.outputs.data).head.ref }} | ||
repo_url: ${{ fromJson(steps.pr-api.outputs.data).head.repo.html_url }} | ||
rhel95-bib-image: | ||
needs: pr-info | ||
if: ${{ needs.pr-info.outputs.allowed_user == 'true' && github.event.issue.pull_request && | ||
(endsWith(github.event.comment.body, '/test-rhel95') || | ||
endsWith(github.event.comment.body, '/test-rhel95-bib-image')) }} | ||
continue-on-error: true | ||
strategy: | ||
matrix: | ||
arch: [x86_64, aarch64] | ||
image_type: [ami, qcow2, vmdk, raw, anaconda-iso, to-disk] | ||
firmware: [image] | ||
exclude: | ||
- arch: aarch64 | ||
image_type: vmdk | ||
- image_type: anaconda-iso | ||
firmware: image | ||
include: | ||
- image_type: ami | ||
platform: aws | ||
- image_type: qcow2 | ||
platform: libvirt | ||
- image_type: vmdk | ||
platform: vsphere | ||
- image_type: raw | ||
platform: libvirt | ||
- image_type: to-disk | ||
platform: libvirt | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: x86_64 | ||
firmware: bios | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: x86_64 | ||
firmware: uefi | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: aarch64 | ||
firmware: uefi | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | ||
with: | ||
ref: ${{ needs.pr-info.outputs.sha }} | ||
fetch-depth: 0 | ||
- name: Run the tests | ||
uses: sclorg/testing-farm-as-github-action@v1 | ||
with: | ||
compose: RHEL-9.5.0-Nightly | ||
api_key: ${{ secrets.TF_API_KEY }} | ||
git_url: ${{ needs.pr-info.outputs.repo_url }} | ||
git_ref: ${{ needs.pr-info.outputs.ref }} | ||
arch: ${{ matrix.arch }} | ||
tmt_context: "arch=${{ matrix.arch }}" | ||
update_pull_request_status: true | ||
pull_request_status_name: "bootc-rhel95-${{ matrix.arch }}-bib-${{ matrix.image_type }}-${{ matrix.firmware }}" | ||
tmt_plan_regex: "${{ matrix.image_type }}" | ||
tf_scope: private | ||
secrets: "TIER1_IMAGE_URL=${{ secrets.RHEL95_TIER1_IMAGE_URL }};QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};QUAY_SECRET=${{ secrets.QUAY_SECRET }};DOWNLOAD_NODE=${{ secrets.DOWNLOAD_NODE }};AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }};AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SECRET_ACCESS_KEY }};GOVC_URL=${{ secrets.GOVC_URL }};GOVC_USERNAME=${{ secrets.GOVC_USERNAME }};GOVC_PASSWORD=${{ secrets.GOVC_PASSWORD }};RHC_AK=${{ secrets.RHC_AK }};RHC_ORGID=${{ secrets.RHC_ORGID }};RHEL_REGISTRY_URL=${{ secrets.RHEL_REGISTRY_URL }}" | ||
variables: "PLATFORM=${{ matrix.platform }};ARCH=${{ matrix.arch }};IMAGE_TYPE=${{ matrix.image_type }};AWS_REGION=${{ secrets.AWS_REGION }};GOVC_INSECURE=1;FIRMWARE=${{ matrix.firmware }}" | ||
rhel94-bib-image: | ||
needs: pr-info | ||
if: ${{ needs.pr-info.outputs.allowed_user == 'true' && github.event.issue.pull_request && | ||
(endsWith(github.event.comment.body, '/test-rhel94') || | ||
endsWith(github.event.comment.body, '/test-rhel94-bib-image')) }} | ||
continue-on-error: true | ||
strategy: | ||
matrix: | ||
arch: [x86_64, aarch64] | ||
image_type: [ami, qcow2, vmdk, raw, anaconda-iso, to-disk] | ||
firmware: [image] | ||
exclude: | ||
- arch: aarch64 | ||
image_type: vmdk | ||
- image_type: anaconda-iso | ||
firmware: image | ||
include: | ||
- image_type: ami | ||
platform: aws | ||
- image_type: qcow2 | ||
platform: libvirt | ||
- image_type: vmdk | ||
platform: vsphere | ||
- image_type: raw | ||
platform: libvirt | ||
- image_type: to-disk | ||
platform: libvirt | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: x86_64 | ||
firmware: bios | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: x86_64 | ||
firmware: uefi | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: aarch64 | ||
firmware: uefi | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | ||
with: | ||
ref: ${{ needs.pr-info.outputs.sha }} | ||
fetch-depth: 0 | ||
- name: Run the tests | ||
uses: sclorg/testing-farm-as-github-action@v1 | ||
with: | ||
compose: RHEL-9.4.0-Nightly | ||
api_key: ${{ secrets.TF_API_KEY }} | ||
git_url: ${{ needs.pr-info.outputs.repo_url }} | ||
git_ref: ${{ needs.pr-info.outputs.ref }} | ||
arch: ${{ matrix.arch }} | ||
tmt_context: "arch=${{ matrix.arch }}" | ||
update_pull_request_status: true | ||
pull_request_status_name: "bootc-rhel94-${{ matrix.arch }}-bib-${{ matrix.image_type }}-${{ matrix.firmware }}" | ||
tmt_plan_regex: "${{ matrix.image_type }}" | ||
tf_scope: private | ||
secrets: "TIER1_IMAGE_URL=${{ secrets.RHEL94_TIER1_IMAGE_URL }};QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};QUAY_SECRET=${{ secrets.QUAY_SECRET }};DOWNLOAD_NODE=${{ secrets.DOWNLOAD_NODE }};AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }};AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SECRET_ACCESS_KEY }};GOVC_URL=${{ secrets.GOVC_URL }};GOVC_USERNAME=${{ secrets.GOVC_USERNAME }};GOVC_PASSWORD=${{ secrets.GOVC_PASSWORD }};RHC_AK=${{ secrets.RHC_AK }};RHC_ORGID=${{ secrets.RHC_ORGID }};RHEL_REGISTRY_URL=${{ secrets.RHEL_REGISTRY_URL }}" | ||
variables: "PLATFORM=${{ matrix.platform }};ARCH=${{ matrix.arch }};IMAGE_TYPE=${{ matrix.image_type }};AWS_REGION=${{ secrets.AWS_REGION }};GOVC_INSECURE=1;FIRMWARE=${{ matrix.firmware }}" | ||
cs9-bib-image: | ||
needs: pr-info | ||
if: ${{ needs.pr-info.outputs.allowed_user == 'true' && github.event.issue.pull_request && | ||
(endsWith(github.event.comment.body, '/test-cs9') || | ||
endsWith(github.event.comment.body, '/test-cs9-bib-image')) }} | ||
continue-on-error: true | ||
strategy: | ||
matrix: | ||
arch: [x86_64, aarch64] | ||
image_type: [ami, qcow2, vmdk, raw, anaconda-iso, to-disk] | ||
firmware: [image] | ||
exclude: | ||
- arch: aarch64 | ||
image_type: vmdk | ||
- image_type: anaconda-iso | ||
firmware: image | ||
include: | ||
- image_type: ami | ||
platform: aws | ||
- image_type: qcow2 | ||
platform: libvirt | ||
- image_type: vmdk | ||
platform: vsphere | ||
- image_type: raw | ||
platform: libvirt | ||
- image_type: to-disk | ||
platform: libvirt | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: x86_64 | ||
firmware: bios | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: x86_64 | ||
firmware: uefi | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: aarch64 | ||
firmware: uefi | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | ||
with: | ||
ref: ${{ needs.pr-info.outputs.sha }} | ||
fetch-depth: 0 | ||
- name: Run the tests | ||
uses: sclorg/testing-farm-as-github-action@v1 | ||
with: | ||
compose: CentOS-Stream-9 | ||
api_key: ${{ secrets.TF_API_KEY }} | ||
git_url: ${{ needs.pr-info.outputs.repo_url }} | ||
git_ref: ${{ needs.pr-info.outputs.ref }} | ||
arch: ${{ matrix.arch }} | ||
tmt_context: "arch=${{ matrix.arch }}" | ||
update_pull_request_status: true | ||
pull_request_status_name: "bootc-cs9-${{ matrix.arch }}-bib-${{ matrix.image_type }}-${{ matrix.firmware }}" | ||
tmt_plan_regex: "${{ matrix.image_type }}" | ||
tf_scope: private | ||
secrets: "TIER1_IMAGE_URL=${{ secrets.CS9_TIER1_IMAGE_URL }};QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};QUAY_SECRET=${{ secrets.QUAY_SECRET }};AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }};AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SECRET_ACCESS_KEY }};GOVC_URL=${{ secrets.GOVC_URL }};GOVC_USERNAME=${{ secrets.GOVC_USERNAME }};GOVC_PASSWORD=${{ secrets.GOVC_PASSWORD }}" | ||
variables: "PLATFORM=${{ matrix.platform }};ARCH=${{ matrix.arch }};IMAGE_TYPE=${{ matrix.image_type }};AWS_REGION=${{ secrets.AWS_REGION }};GOVC_INSECURE=1;FIRMWARE=${{ matrix.firmware }}" | ||
cs9-dev-bib-image: | ||
needs: pr-info | ||
if: ${{ needs.pr-info.outputs.allowed_user == 'true' && github.event.issue.pull_request && | ||
(endsWith(github.event.comment.body, '/test-cs9-dev') || | ||
endsWith(github.event.comment.body, '/test-cs9-dev-bib-image')) }} | ||
continue-on-error: true | ||
strategy: | ||
matrix: | ||
arch: [x86_64, aarch64] | ||
image_type: [ami, qcow2, vmdk, raw, anaconda-iso, to-disk] | ||
build_arch: [x86_64, aarch64] | ||
firmware: [image] | ||
exclude: | ||
- image_type: anaconda-iso | ||
firmware: image | ||
- image_type: vmdk | ||
arch: aarch64 | ||
- image_type: vmdk | ||
build_arch: aarch64 | ||
- image_type: qcow2 | ||
arch: x86_64 | ||
build_arch: aarch64 | ||
- image_type: qcow2 | ||
arch: aarch64 | ||
build_arch: x86_64 | ||
- image_type: raw | ||
arch: x86_64 | ||
build_arch: aarch64 | ||
- image_type: raw | ||
arch: aarch64 | ||
build_arch: x86_64 | ||
- image_type: to-disk | ||
arch: x86_64 | ||
build_arch: aarch64 | ||
- image_type: to-disk | ||
arch: aarch64 | ||
build_arch: x86_64 | ||
- image_type: anaconda-iso | ||
arch: x86_64 | ||
build_arch: aarch64 | ||
- image_type: anaconda-iso | ||
arch: aarch64 | ||
build_arch: x86_64 | ||
include: | ||
- image_type: ami | ||
platform: aws | ||
- image_type: qcow2 | ||
platform: libvirt | ||
- image_type: vmdk | ||
platform: vsphere | ||
- image_type: raw | ||
platform: libvirt | ||
- image_type: to-disk | ||
platform: libvirt | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: x86_64 | ||
build_arch: x86_64 | ||
firmware: bios | ||
runner_compose: RHEL-9.5.0-Nightly | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: x86_64 | ||
build_arch: x86_64 | ||
firmware: uefi | ||
runner_compose: RHEL-9.5.0-Nightly | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: aarch64 | ||
build_arch: aarch64 | ||
firmware: uefi | ||
runner_compose: RHEL-9.5.0-Nightly | ||
- arch: x86_64 | ||
build_arch: x86_64 | ||
runner_compose: RHEL-9.5.0-Nightly | ||
- arch: aarch64 | ||
build_arch: aarch64 | ||
runner_compose: RHEL-9.5.0-Nightly | ||
- arch: x86_64 | ||
build_arch: aarch64 | ||
runner_compose: Fedora-40 | ||
- arch: aarch64 | ||
build_arch: x86_64 | ||
runner_compose: Fedora-40 | ||
runs-on: ubuntu-latest | ||
# Only run cross-build test on Fedora-40 TF runner | ||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | ||
with: | ||
ref: ${{ needs.pr-info.outputs.sha }} | ||
fetch-depth: 0 | ||
- name: Run the tests | ||
uses: sclorg/testing-farm-as-github-action@v1 | ||
with: | ||
compose: ${{ matrix.runner_compose }} | ||
api_key: ${{ secrets.TF_API_KEY }} | ||
git_url: ${{ needs.pr-info.outputs.repo_url }} | ||
git_ref: ${{ needs.pr-info.outputs.ref }} | ||
arch: ${{ matrix.build_arch }} | ||
tmt_context: "arch=${{ matrix.arch }}" | ||
update_pull_request_status: true | ||
pull_request_status_name: "bootc-cs9-dev-${{ matrix.arch }}-bib-${{ matrix.image_type }}-${{ matrix.firmware }}-on-${{ matrix.build_arch }}" | ||
tmt_plan_regex: "${{ matrix.image_type }}" | ||
tf_scope: private | ||
secrets: "TIER1_IMAGE_URL=${{ secrets.CS9_DEV_TIER1_IMAGE_URL }};QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};QUAY_SECRET=${{ secrets.QUAY_SECRET }};AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }};AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SECRET_ACCESS_KEY }};GOVC_URL=${{ secrets.GOVC_URL }};GOVC_USERNAME=${{ secrets.GOVC_USERNAME }};GOVC_PASSWORD=${{ secrets.GOVC_PASSWORD }}" | ||
variables: "PLATFORM=${{ matrix.platform }};ARCH=${{ matrix.arch }};IMAGE_TYPE=${{ matrix.image_type }};AWS_REGION=${{ secrets.AWS_REGION }};GOVC_INSECURE=1;FIRMWARE=${{ matrix.firmware }}" | ||
fedora-40-bib-image: | ||
needs: pr-info | ||
if: ${{ needs.pr-info.outputs.allowed_user == 'true' && github.event.issue.pull_request && | ||
(endsWith(github.event.comment.body, '/test-fedora-40') || | ||
endsWith(github.event.comment.body, '/test-fedora-40-bib-image')) }} | ||
continue-on-error: true | ||
strategy: | ||
matrix: | ||
arch: [x86_64, aarch64] | ||
image_type: [ami, qcow2, vmdk, raw, anaconda-iso, to-disk] | ||
firmware: [image] | ||
exclude: | ||
- arch: aarch64 | ||
image_type: vmdk | ||
- image_type: anaconda-iso | ||
firmware: image | ||
include: | ||
- image_type: ami | ||
platform: aws | ||
- image_type: qcow2 | ||
platform: libvirt | ||
- image_type: vmdk | ||
platform: vsphere | ||
- image_type: raw | ||
platform: libvirt | ||
- image_type: to-disk | ||
platform: libvirt | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: x86_64 | ||
firmware: bios | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: x86_64 | ||
firmware: uefi | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: aarch64 | ||
firmware: uefi | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | ||
with: | ||
ref: ${{ needs.pr-info.outputs.sha }} | ||
fetch-depth: 0 | ||
- name: Run the tests | ||
uses: sclorg/testing-farm-as-github-action@v1 | ||
with: | ||
compose: Fedora-40 | ||
api_key: ${{ secrets.TF_API_KEY }} | ||
git_url: ${{ needs.pr-info.outputs.repo_url }} | ||
git_ref: ${{ needs.pr-info.outputs.ref }} | ||
arch: ${{ matrix.arch }} | ||
tmt_context: "arch=${{ matrix.arch }}" | ||
update_pull_request_status: true | ||
pull_request_status_name: "bootc-fedora-40-${{ matrix.arch }}-bib-${{ matrix.image_type }}-${{ matrix.firmware }}" | ||
tmt_plan_regex: "${{ matrix.image_type }}" | ||
tf_scope: private | ||
secrets: "QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};QUAY_SECRET=${{ secrets.QUAY_SECRET }};AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }};AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SECRET_ACCESS_KEY }};GOVC_URL=${{ secrets.GOVC_URL }};GOVC_USERNAME=${{ secrets.GOVC_USERNAME }};GOVC_PASSWORD=${{ secrets.GOVC_PASSWORD }}" | ||
variables: "PLATFORM=${{ matrix.platform }};ARCH=${{ matrix.arch }};IMAGE_TYPE=${{ matrix.image_type }};AWS_REGION=${{ secrets.AWS_REGION }};GOVC_INSECURE=1;FIRMWARE=${{ matrix.firmware }};TIER1_IMAGE_URL=${{ vars.FEDORA_40_TIER1_IMAGE_URL }}" | ||
fedora-41-bib-image: | ||
needs: pr-info | ||
if: ${{ needs.pr-info.outputs.allowed_user == 'true' && github.event.issue.pull_request && | ||
(endsWith(github.event.comment.body, '/test-fedora-41') || | ||
endsWith(github.event.comment.body, '/test-fedora-41-bib-image')) }} | ||
continue-on-error: true | ||
strategy: | ||
matrix: | ||
arch: [x86_64, aarch64] | ||
image_type: [ami, qcow2, vmdk, raw, anaconda-iso, to-disk] | ||
firmware: [image] | ||
exclude: | ||
- arch: aarch64 | ||
image_type: vmdk | ||
- image_type: anaconda-iso | ||
firmware: image | ||
include: | ||
- image_type: ami | ||
platform: aws | ||
- image_type: qcow2 | ||
platform: libvirt | ||
- image_type: vmdk | ||
platform: vsphere | ||
- image_type: raw | ||
platform: libvirt | ||
- image_type: to-disk | ||
platform: libvirt | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: x86_64 | ||
firmware: bios | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: x86_64 | ||
firmware: uefi | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: aarch64 | ||
firmware: uefi | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | ||
with: | ||
ref: ${{ needs.pr-info.outputs.sha }} | ||
fetch-depth: 0 | ||
- name: Run the tests | ||
uses: sclorg/testing-farm-as-github-action@v1 | ||
with: | ||
compose: Fedora-40 | ||
api_key: ${{ secrets.TF_API_KEY }} | ||
git_url: ${{ needs.pr-info.outputs.repo_url }} | ||
git_ref: ${{ needs.pr-info.outputs.ref }} | ||
arch: ${{ matrix.arch }} | ||
tmt_context: "arch=${{ matrix.arch }}" | ||
update_pull_request_status: true | ||
pull_request_status_name: "bootc-fedora-41-${{ matrix.arch }}-bib-${{ matrix.image_type }}-${{ matrix.firmware }}" | ||
tmt_plan_regex: "${{ matrix.image_type }}" | ||
tf_scope: private | ||
secrets: "QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};QUAY_SECRET=${{ secrets.QUAY_SECRET }};AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }};AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SECRET_ACCESS_KEY }};GOVC_URL=${{ secrets.GOVC_URL }};GOVC_USERNAME=${{ secrets.GOVC_USERNAME }};GOVC_PASSWORD=${{ secrets.GOVC_PASSWORD }}" | ||
variables: "PLATFORM=${{ matrix.platform }};ARCH=${{ matrix.arch }};IMAGE_TYPE=${{ matrix.image_type }};AWS_REGION=${{ secrets.AWS_REGION }};GOVC_INSECURE=1;FIRMWARE=${{ matrix.firmware }};TIER1_IMAGE_URL=${{ vars.FEDORA_41_TIER1_IMAGE_URL }}" | ||
rhel9y-snapshot-bib-image: | ||
needs: pr-info | ||
if: ${{ needs.pr-info.outputs.allowed_user == 'true' && github.event.issue.pull_request && | ||
(endsWith(github.event.comment.body, '/test-rhel9y-snapshot') || | ||
endsWith(github.event.comment.body, '/test-rhel9y-snapshot-bib-image')) }} | ||
continue-on-error: true | ||
strategy: | ||
matrix: | ||
arch: [x86_64, aarch64] | ||
image_type: [ami, qcow2, vmdk, raw, anaconda-iso, to-disk] | ||
firmware: [image] | ||
exclude: | ||
- arch: aarch64 | ||
image_type: vmdk | ||
- image_type: anaconda-iso | ||
firmware: image | ||
include: | ||
- image_type: ami | ||
platform: aws | ||
- image_type: qcow2 | ||
platform: libvirt | ||
- image_type: vmdk | ||
platform: vsphere | ||
- image_type: raw | ||
platform: libvirt | ||
- image_type: to-disk | ||
platform: libvirt | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: x86_64 | ||
firmware: bios | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: x86_64 | ||
firmware: uefi | ||
- image_type: anaconda-iso | ||
platform: libvirt | ||
arch: aarch64 | ||
firmware: uefi | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | ||
with: | ||
ref: ${{ needs.pr-info.outputs.sha }} | ||
fetch-depth: 0 | ||
- name: Run the tests | ||
uses: sclorg/testing-farm-as-github-action@v1 | ||
with: | ||
compose: RHEL-9.4.0-Nightly | ||
api_key: ${{ secrets.TF_API_KEY }} | ||
git_url: ${{ needs.pr-info.outputs.repo_url }} | ||
git_ref: ${{ needs.pr-info.outputs.ref }} | ||
arch: ${{ matrix.arch }} | ||
tmt_context: "arch=${{ matrix.arch }}" | ||
update_pull_request_status: true | ||
pull_request_status_name: "bootc-rhel9y-snapshot-${{ matrix.arch }}-bib-${{ matrix.image_type }}-${{ matrix.firmware }}" | ||
tmt_plan_regex: "${{ matrix.image_type }}" | ||
tf_scope: private | ||
secrets: "TIER1_IMAGE_URL=${{ secrets.RHEL9Y_SNAPSHOT_IMAGE_URL }};QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};QUAY_SECRET=${{ secrets.QUAY_SECRET }};DOWNLOAD_NODE=${{ secrets.DOWNLOAD_NODE }};AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }};AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SECRET_ACCESS_KEY }};GOVC_URL=${{ secrets.GOVC_URL }};GOVC_USERNAME=${{ secrets.GOVC_USERNAME }};GOVC_PASSWORD=${{ secrets.GOVC_PASSWORD }};RHC_AK=${{ secrets.RHC_AK }};RHC_ORGID=${{ secrets.RHC_ORGID }};RHEL_REGISTRY_URL=${{ secrets.RHEL_REGISTRY_URL }}" | ||
variables: "PLATFORM=${{ matrix.platform }};ARCH=${{ matrix.arch }};IMAGE_TYPE=${{ matrix.image_type }};AWS_REGION=${{ secrets.AWS_REGION }};GOVC_INSECURE=1;FIRMWARE=${{ matrix.firmware }}" |