forked from rhinstaller/anaconda
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
infra: Waive correctly e2e webui tests
- Loading branch information
1 parent
d464853
commit f9aca50
Showing
2 changed files
with
10 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,9 @@ permissions: | |
statuses: write | ||
checks: write | ||
|
||
env: | ||
STATUS_NAME: Permian WebUI e2e | ||
|
||
jobs: | ||
pr-info: | ||
if: startsWith(github.event.comment.body, '/webui-test') | ||
|
@@ -72,7 +75,6 @@ jobs: | |
runs-on: [self-hosted, kstest] | ||
timeout-minutes: 65 | ||
env: | ||
STATUS_NAME: Permian WebUI e2e | ||
TARGET_BRANCH: ${{ needs.pr-info.outputs.base_ref }} | ||
# ocp-master-xxl: 32GB RAM / 4GB RAM per VM | ||
TEST_JOBS: 8 | ||
|
@@ -276,14 +278,14 @@ jobs: | |
env: | ||
BODY: ${{ github.event.comment.body }} | ||
run: | | ||
REASON=$(echo "$BODY" | sed -e "s#/kickstart-test --waive ##") | ||
REASON=$(echo "$BODY" | sed -e "s#/webui-test --waive ##") | ||
echo "reason=Waived, $REASON" >> $GITHUB_OUTPUT | ||
- name: Set status | ||
uses: octokit/[email protected] | ||
with: | ||
route: 'POST /repos/${{ github.repository }}/statuses/${{ needs.pr-info.outputs.sha }}' | ||
context: '${{ env.STATUS_NAME }} ${{ needs.pr-info.outputs.launch_args }}' | ||
context: ${{ env.STATUS_NAME }} | ||
description: '${{ steps.get_reason.outputs.reason }}' | ||
state: ${{ job.status }} | ||
target_url: 'https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}' | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,9 @@ permissions: | |
statuses: write | ||
checks: write | ||
|
||
env: | ||
STATUS_NAME: Permian WebUI e2e | ||
|
||
jobs: | ||
pr-info: | ||
if: startsWith(github.event.comment.body, '/webui-test') | ||
|
@@ -66,7 +69,6 @@ jobs: | |
runs-on: [self-hosted, kstest] | ||
timeout-minutes: 65 | ||
env: | ||
STATUS_NAME: Permian WebUI e2e | ||
TARGET_BRANCH: ${{ needs.pr-info.outputs.base_ref }} | ||
# ocp-master-xxl: 32GB RAM / 4GB RAM per VM | ||
TEST_JOBS: 8 | ||
|
@@ -270,14 +272,14 @@ jobs: | |
env: | ||
BODY: ${{ github.event.comment.body }} | ||
run: | | ||
REASON=$(echo "$BODY" | sed -e "s#/kickstart-test --waive ##") | ||
REASON=$(echo "$BODY" | sed -e "s#/webui-test --waive ##") | ||
echo "reason=Waived, $REASON" >> $GITHUB_OUTPUT | ||
|
||
- name: Set status | ||
uses: octokit/[email protected] | ||
with: | ||
route: 'POST /repos/${{ github.repository }}/statuses/${{ needs.pr-info.outputs.sha }}' | ||
context: '${{ env.STATUS_NAME }} ${{ needs.pr-info.outputs.launch_args }}' | ||
context: ${{ env.STATUS_NAME }} | ||
description: '${{ steps.get_reason.outputs.reason }}' | ||
state: ${{ job.status }} | ||
target_url: 'https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}' | ||
|