From b8f02b392645142c0539c3001233c77de46bf8b7 Mon Sep 17 00:00:00 2001 From: Kaushik Surya Date: Tue, 3 Dec 2024 13:30:31 -0500 Subject: [PATCH] Add back local stack for CN --- .github/workflows/integration-test.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index d147e63a50..7570943439 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -36,26 +36,6 @@ concurrency: cancel-in-progress: true jobs: - CheckBuildTestArtifacts: - runs-on: ubuntu-latest - steps: - - run: | - if [[ ${{ inputs.build_sha }} == ${{ github.sha }} ]]; then - echo "Build SHA matches test SHA" - else - echo "Build SHA does not match test SHA" - exit 1 - fi - - run: | - conclusion=$(gh run view ${{ inputs.build_run_id }} --repo $GITHUB_REPOSITORY --json conclusion -q '.conclusion') - if [[ $conclusion == "success" ]]; then - echo "Run succeeded" - else - echo "Run failed" - exit 1 - fi - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} MakeAndUploadVendor: needs: [ CheckBuildTestArtifacts ]