From 4a4819c90bd32b82b264e512fe287132d3d3535f Mon Sep 17 00:00:00 2001 From: Jithun Nair <37884920+jithunnair-amd@users.noreply.github.com> Date: Thu, 19 Dec 2024 16:22:17 -0600 Subject: [PATCH] Don't skip steps to see if they fail --- .github/workflows/linux_job.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux_job.yml b/.github/workflows/linux_job.yml index 02eba3134f..7bb2426b52 100644 --- a/.github/workflows/linux_job.yml +++ b/.github/workflows/linux_job.yml @@ -261,21 +261,20 @@ jobs: bash "${RUNNER_TEMP}/exec_script" - name: Surface failing tests - if: ${{ inputs.rocm == false }} uses: pmeier/pytest-results-action@v0.3.0 with: path: ${{ env.RUNNER_TEST_RESULTS_DIR }} fail-on-empty: false - name: Chown repository directory - if: ${{ inputs.rocm == false }} + #if: ${{ inputs.rocm == false }} uses: ./test-infra/.github/actions/chown-directory with: directory: ${{ github.workspace }}/${{ env.repository }} ALPINE_IMAGE: ${{ startsWith(inputs.runner, 'linux.arm64') && 'arm64v8/alpine' || '308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine' }} - name: Chown runner temp - if: ${{ inputs.rocm == false }} + #if: ${{ inputs.rocm == false }} uses: ./test-infra/.github/actions/chown-directory with: directory: ${{ runner.temp }}