Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
Signed-off-by: vmudadla <vmudadla@redhat.com>
  • Loading branch information
VaniHaripriya committed Oct 14, 2024
1 parent 4ccb047 commit 8a2ad98
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 16 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/add-ci-passed-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,7 @@ jobs:
event_action=$(cat ./event_action)
echo "pr_number=${pr_number}" >> $GITHUB_OUTPUT
echo "event_action=${event_action}" >> $GITHUB_OUTPUT
add_ci_passed_label:
name: Add 'ci-passed' label
runs-on: ubuntu-latest
needs: fetch_data
steps:
- name: Add 'ci-passed' label
run: |
echo "Adding 'ci-passed' label to PR #${{ needs.fetch_data.outputs.pr_number }}"
gh pr edit ${{ needs.fetch_data.outputs.pr_number }} --add-label "ci-passed" --repo $GITHUB_REPOSITORY
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

reset_ci_passed_label:
name: Reset 'ci-passed' label on PR Synchronization
runs-on: ubuntu-latest
Expand All @@ -82,3 +70,15 @@ jobs:
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

add_ci_passed_label:
name: Add 'ci-passed' label
runs-on: ubuntu-latest
needs: fetch_data
steps:
- name: Add 'ci-passed' label
run: |
echo "Adding 'ci-passed' label to PR #${{ needs.fetch_data.outputs.pr_number }}"
gh pr edit ${{ needs.fetch_data.outputs.pr_number }} --add-label "ci-passed" --repo $GITHUB_REPOSITORY
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,4 @@ jobs:
with:
name: kfp-tekton-backend-artifacts
path: /tmp/tmp.*/*
#FORCE RUN
19 changes: 16 additions & 3 deletions .github/workflows/ci-checks.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This workflow checks if all CI checks have passed by polling every 5 minutes for a total of 7 attempts.
# This workflow checks if all CI checks have passed by polling every 5 minutes for a total of 8 attempts.
name: CI Check

on:
Expand All @@ -11,12 +11,25 @@ jobs:
permissions:
checks: read
pull-requests: write
steps:
steps:
- name: Check for 'needs-ok-to-test' label
id: label_check
run: |
LABELS=$(gh pr view ${{ github.event.pull_request.number }} --json labels --jq '.labels[].name')
if echo "$LABELS" | grep -q 'needs-ok-to-test'; then
echo "Label 'needs-ok-to-test' found. Skipping the workflow."
exit 0
else
echo "Label 'needs-ok-to-test' not found. Continuing the workflow."
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Check if all CI checks passed
uses: wechuli/allcheckspassed@0b68b3b7d92e595bcbdea0c860d05605720cf479
with:
delay: '5'
retries: '7'
retries: '8'
polling_interval: '5'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,3 +195,4 @@ jobs:
with:
name: kfp-basic-sample-tests-artifacts
path: /tmp/tmp.*/*
#FORCE RUN
1 change: 1 addition & 0 deletions .github/workflows/kfp-samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@ jobs:
- name: Run Samples Tests
run: |
./backend/src/v2/test/sample-test.sh
#FORCE RUN
1 change: 1 addition & 0 deletions .github/workflows/kfp-sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ jobs:
- name: Run SDK Tests
run: |
./test/presubmit-tests-sdk.sh
#FORCE RUN
1 change: 1 addition & 0 deletions .github/workflows/kubeflow-pipelines-integration-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ jobs:
- name: Run the Integration Tests
run: |
./backend/src/v2/test/integration-test.sh
#FORCE RUN
1 change: 1 addition & 0 deletions .github/workflows/upgrade-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,4 @@ jobs:
- name: Prepare verification tests v2
working-directory: backend/test/v2/integration
run: go test -v ./... -namespace ${NAMESPACE} -args -runUpgradeTests=true -testify.m=Verify
#FORCE RUN

0 comments on commit 8a2ad98

Please sign in to comment.