File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,6 +15,33 @@ permissions:
1515 contents : read
1616
1717jobs :
18+ # DEBUG
19+ debug-ubuntu :
20+ runs-on : ubuntu-24.04
21+ steps :
22+ - name : Checkout
23+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
24+
25+ - name : Setup homebrew packages
26+ uses : ./.github/actions/homebrew-packages-setup
27+ with :
28+ cache-mode : use
29+ packages-hash-to-use : ${{ inputs.packages-hash-ubuntu }}
30+
31+ - run : |
32+ set -x
33+ mods="$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
34+ eval "${mods}"
35+ echo "HOMEBREW_PREFIX=${HOMEBREW_PREFIX}"
36+ ls -la "${HOMEBREW_PREFIX}"/ || true
37+ ls -la "${HOMEBREW_PREFIX}"/opt/ || true
38+ ls -la "${HOMEBREW_PREFIX}"/opt/gcc/ || true
39+ ls -la "${HOMEBREW_PREFIX}"/opt/gcc/include/ || true
40+ ls -la "${HOMEBREW_PREFIX}"/opt/gcc/include/c++/ || true
41+ ls -la "${HOMEBREW_PREFIX}"/opt/gcc/include/c++/15/ || true
42+
43+ shell: bash
44+
1845 # Checks
1946 build-test-run :
2047 uses : ./.github/workflows/cpp-build-test-run.yaml
You can’t perform that action at this time.
0 commit comments