From a69edcd3195b6b1eef1b9d30c97c833d96bc8e40 Mon Sep 17 00:00:00 2001 From: Ian Wahbe Date: Wed, 30 Aug 2023 20:24:20 -0700 Subject: [PATCH] Always run extra test Under the new workflow files, this test is included whenever we run our other tests. Importantly, the post-test phase of the relevant workflows depend on this test running successfully. We can't skip the test (for example [during releases](https://github.com/pulumi/pulumi-aws/actions/runs/6032096288), since that blocks the post-test actions). --- .github/workflows/main.yml | 1 - .github/workflows/master.yml | 1 - .github/workflows/prerelease.yml | 1 - .github/workflows/release.yml | 1 - .github/workflows/run-acceptance-tests.yml | 1 - 5 files changed, 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 74105492c09..c65878f9a70 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -450,7 +450,6 @@ jobs: - go - java go_test_shim: - if: github.event_name == 'repository_dispatch' || github.event.pull_request.head.repo.full_name == github.repository name: Run test of provider shim runs-on: ubuntu-latest steps: diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 7d0838fcc8b..5d936ed293d 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -450,7 +450,6 @@ jobs: - go - java go_test_shim: - if: github.event_name == 'repository_dispatch' || github.event.pull_request.head.repo.full_name == github.repository name: Run test of provider shim runs-on: ubuntu-latest steps: diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 2dc5141dd20..3037bbaa3d6 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -401,7 +401,6 @@ jobs: - go - java go_test_shim: - if: github.event_name == 'repository_dispatch' || github.event.pull_request.head.repo.full_name == github.repository name: Run test of provider shim runs-on: ubuntu-latest steps: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 10b134eea9a..7e9f2ce2ee2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -420,7 +420,6 @@ jobs: - go - java go_test_shim: - if: github.event_name == 'repository_dispatch' || github.event.pull_request.head.repo.full_name == github.repository name: Run test of provider shim runs-on: ubuntu-latest steps: diff --git a/.github/workflows/run-acceptance-tests.yml b/.github/workflows/run-acceptance-tests.yml index 5c15ffdf186..7252c7121c4 100644 --- a/.github/workflows/run-acceptance-tests.yml +++ b/.github/workflows/run-acceptance-tests.yml @@ -368,7 +368,6 @@ jobs: - go - java go_test_shim: - if: github.event_name == 'repository_dispatch' || github.event.pull_request.head.repo.full_name == github.repository name: Run test of provider shim runs-on: ubuntu-latest steps: