Skip to content

Commit 5f796ea

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

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/root-ci.yml

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

0 commit comments

Comments
 (0)