From 5ecee9f3ada511b611ffd32ea155e1244f7ffb67 Mon Sep 17 00:00:00 2001 From: Clifford Yapp <238416+starseeker@users.noreply.github.com> Date: Wed, 8 May 2024 15:27:18 -0400 Subject: [PATCH] No, that way we just wait for the terminal. Don't do fast fail --- .github/workflows/linux_interactive.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/linux_interactive.yml b/.github/workflows/linux_interactive.yml index b717d66c0dd..8279a5990bc 100644 --- a/.github/workflows/linux_interactive.yml +++ b/.github/workflows/linux_interactive.yml @@ -28,14 +28,7 @@ jobs: linux: name: Ubuntu Latest GCC runs-on: ubuntu-latest - strategy: - fail-fast: true steps: - - name: Debugging - tmate session - if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} - uses: mxschmitt/action-tmate@v3 - with: - limit-access-to-actor: true - name: Setup - CMake uses: lukka/get-cmake@latest @@ -84,4 +77,9 @@ jobs: export PATH=$ENV{GITHUB_WORKSPACE}:$PATH cmake --build build_linux --config Release --target check + - name: Debugging - tmate session + if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} + uses: mxschmitt/action-tmate@v3 + with: + limit-access-to-actor: true