From 9aa6e1813bfaee2c65b45a35cfb6c41b3f664e7c Mon Sep 17 00:00:00 2001 From: Mitali Salvi Date: Tue, 3 Dec 2024 12:11:03 -0500 Subject: [PATCH] Testing vendoring --- .github/workflows/build-test-artifacts.yml | 48 ---------------------- 1 file changed, 48 deletions(-) diff --git a/.github/workflows/build-test-artifacts.yml b/.github/workflows/build-test-artifacts.yml index ca12788fc7..bbaf8f0cdd 100644 --- a/.github/workflows/build-test-artifacts.yml +++ b/.github/workflows/build-test-artifacts.yml @@ -47,44 +47,6 @@ jobs: TerraformAWSAssumeRole: ${{ vars.TERRAFORM_AWS_ASSUME_ROLE }} Bucket: ${{ vars.S3_INTEGRATION_BUCKET }} - BuildDocker: - needs: [BuildAndUpload] - uses: ./.github/workflows/test-build-docker.yml - secrets: inherit - permissions: - id-token: write - contents: read - with: - ContainerRepositoryNameAndTag: "cwagent-integration-test:${{ github.sha }}" - BucketKey: "integration-test/binary/${{ github.sha }}" - PackageBucketKey: "integration-test/packaging/${{ github.sha }}" - - BuildAndUploadITAR: - uses: ./.github/workflows/test-build.yml - secrets: inherit - permissions: - id-token: write - contents: read - with: - BucketKey: "integration-test/binary/${{ github.sha }}" - PackageBucketKey: "integration-test/packaging/${{ github.sha }}" - Region: "us-gov-east-1" - TerraformAWSAssumeRole: ${{ vars.TERRAFORM_AWS_ASSUME_ROLE_ITAR }} - Bucket: ${{ vars.S3_INTEGRATION_BUCKET_ITAR }} - - BuildAndUploadCN: - uses: ./.github/workflows/test-build.yml - secrets: inherit - permissions: - id-token: write - contents: read - with: - BucketKey: "integration-test/binary/${{ github.sha }}" - PackageBucketKey: "integration-test/packaging/${{ github.sha }}" - Region: "cn-north-1" - TerraformAWSAssumeRole: ${{ vars.TERRAFORM_AWS_ASSUME_ROLE_CN }} - Bucket: ${{ vars.S3_INTEGRATION_BUCKET_CN }} - StartIntegrationTests: needs: [ BuildAndUploadPackages, BuildAndUploadITAR, BuildAndUploadCN, BuildDocker ] runs-on: ubuntu-latest @@ -92,13 +54,3 @@ jobs: - run: gh workflow run integration-test.yml --ref ${{ github.ref_name }} --repo $GITHUB_REPOSITORY -f build_run_id=${{ github.run_id }} -f build_sha=${{ github.sha }} env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - StartApplicationSignalsE2ETests: - needs: [ BuildAndUploadPackages, BuildAndUploadITAR, BuildAndUploadCN, BuildDocker ] - # Workflow only runs against main - if: ${{ contains(github.ref_name, 'main') }} - runs-on: ubuntu-latest - steps: - - run: gh workflow run application-signals-e2e-test.yml --ref ${{ github.ref_name }} --repo $GITHUB_REPOSITORY -f build_run_id=${{ github.run_id }} -f build_sha=${{ github.sha }} - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}