From 561eab15a7d3c8d91bbb74dab17fee4e50b153d4 Mon Sep 17 00:00:00 2001 From: Clifford Yapp <238416+starseeker@users.noreply.github.com> Date: Wed, 10 Jul 2024 10:48:37 -0400 Subject: [PATCH] Hmm. Simplify to try and get the tmate session to trigger --- .github/workflows/linux_interactive.yml | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/.github/workflows/linux_interactive.yml b/.github/workflows/linux_interactive.yml index 76fd6e78..c145db55 100644 --- a/.github/workflows/linux_interactive.yml +++ b/.github/workflows/linux_interactive.yml @@ -14,14 +14,7 @@ name: BRL-CAD Linux Interactive Debugging -on: - workflow_dispatch: - inputs: - debug_enabled: - type: boolean - description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' - required: false - default: false +on: [workflow_dispatch] jobs: @@ -58,14 +51,6 @@ jobs: export PATH=$ENV{GITHUB_WORKSPACE}:$PATH cmake -S . -G Ninja -B build -DENABLE_ALL=ON -DGIT_SHALLOW_CLONE=ON -DCMAKE_BUILD_TYPE=Debug - - name: Build - run: | - export PATH=$ENV{GITHUB_WORKSPACE}:$PATH - cd build && ninja -j2 -v - - name: Debugging - tmate session - if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} uses: mxschmitt/action-tmate@v3 - with: - limit-access-to-actor: true