Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-cox committed May 8, 2024
1 parent 7775eb3 commit f02ddb4
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
16 changes: 16 additions & 0 deletions .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/build-branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit f02ddb4

Please sign in to comment.