fix(ci): install latest clang version #206
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
build-type: [release] | |
steps: | |
# Checkout the repository | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
# Install system dependencies for Linux | |
- name: Install Linux dependencies | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y \ | |
libx11-dev \ | |
libxcursor-dev \ | |
libxinerama-dev \ | |
libxi-dev \ | |
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 | |
with: | |
vcpkgGitCommitId: "cd124b84feb0c02a24a2d90981e8358fdee0e077" | |
# Select CMake preset based on OS and build type | |
- name: Select CMake Preset | |
id: select-preset | |
shell: bash | |
run: | | |
if [ "${{ runner.os }}" == "Windows" ]; then | |
case "${{ matrix.build-type }}" in | |
debug) echo "preset=win-debug" ;; | |
release) echo "preset=win-release" ;; | |
relwithdebinfo) echo "preset=win-relwithdebinfo" ;; | |
esac | |
else | |
case "${{ matrix.build-type }}" in | |
debug) echo "preset=unix-debug" ;; | |
release) echo "preset=unix-release" ;; | |
relwithdebinfo) echo "preset=unix-relwithdebinfo" ;; | |
esac | |
fi | tee -a $GITHUB_OUTPUT | |
# Configure the project | |
- name: Configure CMake | |
run: cmake --preset ${{ steps.select-preset.outputs.preset }} | |
env: | |
VCPKG_ROOT: ${{ github.workspace }}/vcpkg | |
# Build the project | |
- name: Build | |
run: cmake --build . --preset ${{ steps.select-preset.outputs.preset }} | |
env: | |
VCPKG_ROOT: ${{ github.workspace }}/vcpkg |