-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: remove unnecessary in-progress steps from fdo container workflow …
…jobs
- Loading branch information
1 parent
9e242b6
commit 890e666
Showing
1 changed file
with
0 additions
and
62 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 |
---|---|---|
|
@@ -43,26 +43,6 @@ jobs: | |
ref: ${{ fromJson(steps.pr-api.outputs.data).head.ref }} | ||
repo_url: ${{ fromJson(steps.pr-api.outputs.data).head.repo.html_url }} | ||
|
||
pre-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') }} | ||
runs-on: ubuntu-latest | ||
env: | ||
STATUS_NAME: fdo-container-community | ||
|
||
steps: | ||
- name: Create in-progress status | ||
uses: octokit/[email protected] | ||
with: | ||
route: 'POST /repos/${{ github.repository }}/statuses/${{ needs.pr-info.outputs.sha }}' | ||
context: ${{ env.STATUS_NAME }} | ||
state: pending | ||
description: 'Centos Stream 9 - Runner has been deploying...' | ||
target_url: 'https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
fdo-container-community: | ||
needs: [pr-info, pre-fdo-container-community] | ||
if: ${{ needs.pr-info.outputs.allowed_user == 'true' && github.event.issue.pull_request }} | ||
|
@@ -72,17 +52,6 @@ jobs: | |
STATUS_NAME: fdo-container-community | ||
|
||
steps: | ||
- name: Create in-progress status | ||
uses: octokit/[email protected] | ||
with: | ||
route: 'POST /repos/${{ github.repository }}/statuses/${{ needs.pr-info.outputs.sha }}' | ||
context: ${{ env.STATUS_NAME }} | ||
state: pending | ||
description: 'Centos Stream 9 - Test has been running...' | ||
target_url: 'https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Clone repository | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | ||
with: | ||
|
@@ -105,26 +74,6 @@ jobs: | |
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" | ||
|
||
pre-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') }} | ||
runs-on: ubuntu-latest | ||
env: | ||
STATUS_NAME: fdo-container-official | ||
|
||
steps: | ||
- name: Create in-progress status | ||
uses: octokit/[email protected] | ||
with: | ||
route: 'POST /repos/${{ github.repository }}/statuses/${{ needs.pr-info.outputs.sha }}' | ||
context: ${{ env.STATUS_NAME }} | ||
state: pending | ||
description: 'RHEL 9.4 - Runner has been deploying...' | ||
target_url: 'https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
fdo-container-official: | ||
needs: [pr-info, pre-fdo-container-official] | ||
if: ${{ needs.pr-info.outputs.allowed_user == 'true' && github.event.issue.pull_request }} | ||
|
@@ -134,17 +83,6 @@ jobs: | |
STATUS_NAME: fdo-container-official | ||
|
||
steps: | ||
- name: Create in-progress status | ||
uses: octokit/[email protected] | ||
with: | ||
route: 'POST /repos/${{ github.repository }}/statuses/${{ needs.pr-info.outputs.sha }}' | ||
context: ${{ env.STATUS_NAME }} | ||
state: pending | ||
description: 'RHEL 9.4 - Test has been running...' | ||
target_url: 'https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Clone repository | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | ||
with: | ||
|