From 4278617ed50e010a09cb6bb05560f8977a4e1f3e Mon Sep 17 00:00:00 2001 From: Josh Usiskin <56369778+jusiskin@users.noreply.github.com> Date: Thu, 17 Oct 2024 15:32:30 -0500 Subject: [PATCH] ci: make Windows E2E tests a requirement before the bump job in the release bump workflow (#446) Signed-off-by: Josh Usiskin <56369778+jusiskin@users.noreply.github.com> --- .github/workflows/release_bump.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release_bump.yml b/.github/workflows/release_bump.yml index f2df8a61..0e3ca704 100644 --- a/.github/workflows/release_bump.yml +++ b/.github/workflows/release_bump.yml @@ -56,7 +56,7 @@ jobs: environment: mainline os: linux - WindowsE2ETest: + WindowsE2ETests: needs: UnitTests name: Windows E2E Test permissions: @@ -71,9 +71,9 @@ jobs: os: windows Bump: - needs: LinuxE2ETests + needs: [LinuxE2ETests, WindowsE2ETests, WindowsIntegrationTests] name: Version Bump uses: aws-deadline/.github/.github/workflows/reusable_bump.yml@mainline secrets: inherit with: - force_version_bump: ${{ inputs.force_version_bump }} \ No newline at end of file + force_version_bump: ${{ inputs.force_version_bump }}