Skip to content

Commit 3aabb95

Browse files
committed
[CI] Add a "Node state" step for macs to debug the missing cmake problem.
1 parent 04d003a commit 3aabb95

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/root-ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,25 @@ jobs:
123123
${{ (github.event_name != 'schedule' && github.event_name != 'workflow_dispatch' && join( matrix.overrides, ', ' )) || '' }}
124124
125125
steps:
126+
- name: Node state
127+
shell: bash -leo pipefail {0}
128+
run: |
129+
echo $PATH
130+
which cmake || true
131+
find /opt -name cmake -type f 2>/dev/null || true
132+
find /usr -name cmake -type f 2>/dev/null || true
133+
cmake --version || true
134+
which c++ || true
135+
c++ --version || true
136+
uname -a || true
137+
sw_vers || true
138+
uptime || true
139+
df || true
140+
echo $SHELL
141+
echo $0
142+
python3 -m site || true
143+
pkgutil --pkg-info=com.apple.pkg.CLTools_Executables || true
144+
126145
- name: Checkout
127146
uses: actions/checkout@v4
128147
with:

0 commit comments

Comments
 (0)