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 996c687 commit 81bc9abCopy full SHA for 81bc9ab
.github/workflows/ci.yml
@@ -163,17 +163,14 @@ jobs:
163
fail-on-alert: false
164
165
clang-tidy:
166
- runs-on: macos-latest
167
- env:
168
- CC: clang
169
- CXX: clang++
+ runs-on: ubuntu-latest
170
steps:
171
- uses: actions/checkout@v4
172
- run: cmake --version
173
- name: Install llvm
174
- run: brew install llvm
175
- - name: Set PATH
176
- run: echo "/opt/homebrew/opt/llvm/bin:$PATH" >> "$GITHUB_PATH"
+ run: sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
+ # - name: Set PATH
+ # run: echo "/opt/homebrew/opt/llvm/bin:$PATH" >> "$GITHUB_PATH"
177
- name: Debug Environment
178
run: |
179
echo "PATH: $PATH"
0 commit comments