We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04d003a commit 5f796eaCopy full SHA for 5f796ea
.github/workflows/root-ci.yml
@@ -123,6 +123,24 @@ jobs:
123
${{ (github.event_name != 'schedule' && github.event_name != 'workflow_dispatch' && join( matrix.overrides, ', ' )) || '' }}
124
125
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
+
144
- name: Checkout
145
uses: actions/checkout@v4
146
with:
0 commit comments