Skip to content

Commit

Permalink
fix(ci): install latest clang version
Browse files Browse the repository at this point in the history
  • Loading branch information
f0e committed Dec 1, 2024
1 parent 900ffa9 commit c7d457f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,23 @@ jobs:
libxrandr-dev \
libgl1-mesa-dev
- name: Install Latest Clang and libc++
if: runner.os == 'Linux'
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 19
sudo apt install -y libc++-19-dev libc++abi-19-dev
# Install Ninja
- name: Install Ninja
uses: seanmiddleditch/gha-setup-ninja@master
with:
version: 1.11.1

- name: debug
run: clang++ --version

# Setup vcpkg
- name: Setup vcpkg
uses: lukka/run-vcpkg@v11
Expand Down

0 comments on commit c7d457f

Please sign in to comment.