ci: fix rhel 9.6 anaconda case failure #36
Workflow file for this run
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: CI Test | |
on: | |
pull_request_target: | |
types: [opened, synchronize, reopened] | |
jobs: | |
check-pull-request: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Query author repository permissions | |
uses: octokit/request-action@v2.x | |
id: user_permission | |
with: | |
route: GET /repos/${{ github.repository }}/collaborators/${{ github.event.sender.login }}/permission | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- 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/request-action@v2.x | |
id: pr-api | |
with: | |
route: GET /repos/${{ github.repository }}/pulls/${{ github.event.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 }} | |
Fedora-41-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: Fedora-41 | |
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: "Fedora-41-bootc" | |
tmt_context: "arch=x86_64;distro=fedora-41" | |
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 | |
# Fedora-rawhide-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: Fedora-Rawhide | |
# api_key: ${{ secrets.TF_API_KEY }} | |
# git_url: ${{ needs.check-pull-request.outputs.repo_url }} | |
# git_ref: ${{ needs.check-pull-request.outputs.ref }} | |
# tmt_context: "arch=x86_64;distro=fedora-rawhide" | |
# 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 | |
Centos-stream-9-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: CentOS-Stream-9 | |
api_key: ${{ secrets.TF_API_KEY }} | |
git_url: ${{ needs.check-pull-request.outputs.repo_url }} | |
git_ref: ${{ needs.check-pull-request.outputs.ref }} | |
tmt_context: "arch=x86_64;distro=cs-9" | |
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 | |
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 }} | |
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 |