Skip to content

Commit

Permalink
fix linux (#893)
Browse files Browse the repository at this point in the history
  • Loading branch information
matcool authored Jan 18, 2025
1 parent 427060a commit 946770b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,16 @@ jobs:
echo "$GITHUB_WORKSPACE/llvm/bin" >> $GITHUB_PATH
if: matrix.config.id == 'win'

- name: Update Clang (Linux)
shell: bash
run: |
sudo apt update
sudo apt remove clang-14
sudo apt install gcc-12 g++-12
sudo ln -sf /usr/bin/gcc-12 /usr/bin/clang
sudo ln -sf /usr/bin/g++-12 /usr/bin/clang++
if: matrix.config.id == 'linux'

- name: Configure
run: >
cmake codegen -B codegen/build
Expand Down

0 comments on commit 946770b

Please sign in to comment.