Skip to content

Commit 76045df

Browse files
committed
DEBUG CI ubuntu + gcc
1 parent f44928f commit 76045df

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/ci-solvers-cpp.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,33 @@ permissions:
1515
contents: read
1616

1717
jobs:
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

0 commit comments

Comments
 (0)