Skip to content

Commit 04d2dfc

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

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/root-ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,20 @@ 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+
126140
- name: Checkout
127141
uses: actions/checkout@v4
128142
with:

0 commit comments

Comments
 (0)