From 39df47112d719647673a74425f5fcfbe8d761b9f Mon Sep 17 00:00:00 2001 From: yatinappsmith <84702014+yatinappsmith@users.noreply.github.com> Date: Mon, 3 Oct 2022 18:47:42 +0530 Subject: [PATCH] ci: Fix fat rerun (#17277) --- .github/workflows/integration-tests-command.yml | 2 +- .github/workflows/test-build-docker-image.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-tests-command.yml b/.github/workflows/integration-tests-command.yml index b85e510337..b3f4cb3479 100644 --- a/.github/workflows/integration-tests-command.yml +++ b/.github/workflows/integration-tests-command.yml @@ -837,7 +837,7 @@ jobs: # Incase for any fat-container job failure, create combined failed spec - name: "combine all specs for fat" - if: needs.ui-test.result != 'success' + if: needs.fat-container-test.result != 'success' run: cat ~/failed_spec_fat/failed_spec_fat* >> ~/combined_failed_spec_fat # Force save the failed spec list into a cache diff --git a/.github/workflows/test-build-docker-image.yml b/.github/workflows/test-build-docker-image.yml index 216772c0f3..0ec45e6aa2 100644 --- a/.github/workflows/test-build-docker-image.yml +++ b/.github/workflows/test-build-docker-image.yml @@ -1459,7 +1459,7 @@ jobs: # Incase for any fat-container job failure, create combined failed spec - name: "combine all specs for fat" - if: needs.ui-test.result != 'success' + if: needs.fat-container-test.result != 'success' run: cat ~/failed_spec_fat/failed_spec_fat* >> ~/combined_failed_spec_fat # Force save the failed spec list into a cache