Skip to content

Commit

Permalink
Always run extra test
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
iwahbe committed Aug 31, 2023
1 parent f6c3ca1 commit a69edcd
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/run-acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit a69edcd

Please sign in to comment.