From 9f63476cf555daac37bec41504ffc8d98d4e2250 Mon Sep 17 00:00:00 2001 From: Richard Cox Date: Wed, 8 May 2024 10:39:44 +0100 Subject: [PATCH] debug --- .github/actions/setup/action.yaml | 16 ++++++++++++++++ .github/workflows/build-branch.yaml | 8 +++++--- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup/action.yaml b/.github/actions/setup/action.yaml index b06f8eb94a..f40c96678c 100644 --- a/.github/actions/setup/action.yaml +++ b/.github/actions/setup/action.yaml @@ -20,6 +20,22 @@ runs: run: | DEBIAN_FRONTEND=noninteractive sudo apt-get install -y --no-install-recommends python2 + # TODO RC remove + # - name: DEBUG2 + # if: ${{ inputs.runner != 'github'}} + # shell: bash + # run: | + # set -e + # echo "!!!!! which" + # which python # this just exits with non-zero + + - name: DEBUG1 + if: ${{ inputs.runner != 'github'}} + shell: bash + run: | + echo "!!!!! apt search" + DEBIAN_FRONTEND=noninteractive apt-get search python + - name: Install Python for node-sass if: ${{ inputs.runner != 'github'}} shell: bash diff --git a/.github/workflows/build-branch.yaml b/.github/workflows/build-branch.yaml index 6eecef5bc9..28b266f952 100644 --- a/.github/workflows/build-branch.yaml +++ b/.github/workflows/build-branch.yaml @@ -9,11 +9,13 @@ on: - gh-runners jobs: - test: - uses: ./.github/workflows/test.yaml + # TODO RC uncomment + # test: + # uses: ./.github/workflows/test.yaml build-branch-and-upload: uses: ./.github/workflows/build-and-upload.yaml - needs: test + # TODO RC uncomment + # needs: test permissions: contents: 'read' id-token: 'write'