From f02ddb40be959b07db74d2684357cc7a2b8bf263 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-and-upload.yaml | 2 +- .github/workflows/build-branch.yaml | 8 +++++--- 3 files changed, 22 insertions(+), 4 deletions(-) diff --git a/.github/actions/setup/action.yaml b/.github/actions/setup/action.yaml index b06f8eb94a..bf62f223c7 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-and-upload.yaml b/.github/workflows/build-and-upload.yaml index 1f6c6a944f..1527354775 100644 --- a/.github/workflows/build-and-upload.yaml +++ b/.github/workflows/build-and-upload.yaml @@ -17,7 +17,7 @@ env: jobs: build-and-upload: - container: ubuntu:22.04 + container: ubuntu:latest runs-on: org-${{ github.repository_owner_id }}-amd64-k8s steps: - uses: actions/checkout@v3 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'