RHEL-9.4.0-updates-20241101.1 - 2024-11-01 #6679
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: FDO Container Test on CentOS Stream 9 | |
on: | |
issue_comment: | |
types: | |
- created | |
jobs: | |
pr-info: | |
if: ${{ github.event.issue.pull_request && | |
(endsWith(github.event.comment.body, '/test-fdo-container-community') || | |
endsWith(github.event.comment.body, '/test-fdo-container-official')) }} | |
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 }} | |
fdo-container-community: | |
needs: pr-info | |
if: ${{ needs.pr-info.outputs.allowed_user == 'true' && github.event.issue.pull_request && endsWith(github.event.comment.body, '/test-fdo-container-community') }} | |
continue-on-error: true | |
runs-on: ubuntu-latest | |
env: | |
STATUS_NAME: fdo-container-community | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
with: | |
ref: ${{ needs.pr-info.outputs.sha }} | |
fetch-depth: 0 | |
- name: run ostree-fdo-container.sh | |
uses: sclorg/[email protected] | |
with: | |
compose: CentOS-Stream-9 | |
arch: x86_64 | |
api_key: ${{ secrets.TF_API_KEY }} | |
git_url: ${{ needs.pr-info.outputs.repo_url }} | |
git_ref: ${{ needs.pr-info.outputs.ref }} | |
update_pull_request_status: true | |
tmt_context: "arch=x86_64;distro=centos-stream-9" | |
pull_request_status_name: "fdo-container-community-cs9" | |
tmt_plan_regex: edge-fdo-container | |
tf_scope: private | |
secrets: "DOWNLOAD_NODE=${{ secrets.DOWNLOAD_NODE }};OCP4_TOKEN=${{ secrets.OCP4_TOKEN }};QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};DOCKERHUB_USERNAME=${{ secrets.DOCKERHUB_USERNAME }};DOCKERHUB_PASSWORD=${{ secrets.DOCKERHUB_PASSWORD }};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: "ARCH=x86_64;AWS_DEFAULT_REGION=us-east-1;GOVC_INSECURE=1;FDO_REGISTRY=quay.io/fido-fdo; OWNER_ONBOARDING_SERVER_NAME=owner-onboarding-server; MANUFACTURING_SERVER_NAME=manufacturing-server; RENDEZVOUS_SERVER_NAME=rendezvous-server; SERVICEINFO_API_SERVER_NAME=serviceinfo-api-server" | |
fdo-container-official: | |
needs: pr-info | |
if: ${{ needs.pr-info.outputs.allowed_user == 'true' && github.event.issue.pull_request && endsWith(github.event.comment.body, '/test-fdo-container-official') }} | |
continue-on-error: true | |
runs-on: ubuntu-latest | |
env: | |
STATUS_NAME: fdo-container-official | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
with: | |
ref: ${{ needs.pr-info.outputs.sha }} | |
fetch-depth: 0 | |
- name: run ostree-fdo-container.sh | |
uses: sclorg/[email protected] | |
with: | |
compose: RHEL-9.5.0-Nightly | |
arch: x86_64 | |
api_key: ${{ secrets.TF_API_KEY }} | |
git_url: ${{ needs.pr-info.outputs.repo_url }} | |
git_ref: ${{ needs.pr-info.outputs.ref }} | |
update_pull_request_status: true | |
tmt_context: "arch=x86_64;distro=rhel-9-5" | |
pull_request_status_name: "fdo-container-official-rhel95" | |
tmt_plan_regex: edge-fdo-container | |
tf_scope: private | |
secrets: "DOWNLOAD_NODE=${{ secrets.DOWNLOAD_NODE }};OCP4_TOKEN=${{ secrets.OCP4_TOKEN }};QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};DOCKERHUB_USERNAME=${{ secrets.DOCKERHUB_USERNAME }};DOCKERHUB_PASSWORD=${{ secrets.DOCKERHUB_PASSWORD }};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 }};FDO_REGISTRY=${{ secrets.FDO_OFFICIAL_REGISTRY }}" | |
variables: "ARCH=x86_64;AWS_DEFAULT_REGION=us-east-1;GOVC_INSECURE=1;OWNER_ONBOARDING_SERVER_NAME=rhel9-fdo-owner-onboarding-server;MANUFACTURING_SERVER_NAME=rhel9-fdo-manufacturing-server;RENDEZVOUS_SERVER_NAME=rhel9-fdo-rendezvous-server;SERVICEINFO_API_SERVER_NAME=rhel9-fdo-serviceinfo-api-server" |