-
Notifications
You must be signed in to change notification settings - Fork 1
155 lines (138 loc) · 6.41 KB
/
rhel-9-4-single.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
---
name: Run Edge Test on RHEL 9.4.0
on:
issue_comment:
types:
- created
jobs:
pr-info:
if: ${{ github.event.issue.pull_request &&
(endsWith(github.event.comment.body, '/test-rhel-9-4')) }}
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.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 }}
edge-rhel-94:
needs: pr-info
if: ${{ needs.pr-info.outputs.allowed_user == 'true' && github.event.issue.pull_request }}
continue-on-error: true
strategy:
matrix:
arch: [x86_64, aarch64]
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
ref: ${{ needs.pr-info.outputs.sha }}
fetch-depth: 0
- name: Run the tests
uses: sclorg/testing-farm-as-github-action@v2
with:
compose: RHEL-9.4.0-Nightly
arch: ${{ matrix.arch }}
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
pull_request_status_name: "edge-rhel-9.4-${{ matrix.arch }}"
tmt_context: "arch=${{ matrix.arch }};distro=rhel"
tmt_plan_regex: edge-commit
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 }};AWS_DEFAULT_REGION=us-east-1;GOVC_URL=${{ secrets.GOVC_URL }};GOVC_USERNAME=${{ secrets.GOVC_USERNAME }};GOVC_PASSWORD=${{ secrets.GOVC_PASSWORD }}"
variables: "ARCH=${{ matrix.arch }};GOVC_INSECURE=1"
# edge-aws-rhel-94:
# needs: pr-info
# if: ${{ needs.pr-info.outputs.allowed_user == 'true' && github.event.issue.pull_request }}
# continue-on-error: true
# runs-on: ubuntu-latest
# steps:
# - name: Clone repository
# uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
# with:
# ref: ${{ needs.pr-info.outputs.sha }}
# fetch-depth: 0
# - name: Run the tests
# uses: sclorg/testing-farm-as-github-action@v2
# with:
# compose: RHEL-9.4.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
# pull_request_status_name: "edge-aws-rhel-94"
# tf_scope: private
# tmt_plan_regex: edge-aws
# secrets: "DOWNLOAD_NODE=${{ secrets.DOWNLOAD_NODE }};AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }};AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SECRET_ACCESS_KEY }};AWS_DEFAULT_REGION=us-east-1"
# edge-vmdk-rhel-94:
# needs: pr-info
# if: ${{ needs.pr-info.outputs.allowed_user == 'true' && github.event.issue.pull_request }}
# continue-on-error: true
# runs-on: ubuntu-latest
# steps:
# - name: Clone repository
# uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
# with:
# ref: ${{ needs.pr-info.outputs.sha }}
# fetch-depth: 0
# - name: Run the tests
# uses: sclorg/testing-farm-as-github-action@v2
# with:
# compose: RHEL-9.4.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
# pull_request_status_name: "edge-vmdk-rhel-94"
# tf_scope: private
# tmt_plan_regex: edge-vmdk
# secrets: "DOWNLOAD_NODE=${{ secrets.DOWNLOAD_NODE }};GOVC_URL=${{ secrets.GOVC_URL }};GOVC_USERNAME=${{ secrets.GOVC_USERNAME }};GOVC_PASSWORD=${{ secrets.GOVC_PASSWORD }};GOVC_INSECURE=1"
# edge-arm-rhel-94:
# needs: pr-info
# if: ${{ needs.pr-info.outputs.allowed_user == 'true' && github.event.issue.pull_request }}
# continue-on-error: true
# runs-on: ubuntu-latest
# steps:
# - name: Clone repository
# uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
# with:
# ref: ${{ needs.pr-info.outputs.sha }}
# fetch-depth: 0
# - name: Run the tests
# uses: sclorg/testing-farm-as-github-action@v2
# with:
# compose: RHEL-9.4.0-Nightly
# arch: aarch64
# 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
# pull_request_status_name: "edge-arm-rhel-9.4"
# tf_scope: private
# tmt_plan_regex: edge-arm
# secrets: "DOWNLOAD_NODE=${{ secrets.DOWNLOAD_NODE }};AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }};AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SECRET_ACCESS_KEY }};AWS_DEFAULT_REGION=us-east-1"