Skip to content

Commit f1a9830

Browse files
committed
feat: Add GitHub Actions workflow for cross-platform CI builds.
1 parent 023d93b commit f1a9830

2 files changed

Lines changed: 15 additions & 73 deletions

File tree

.github/workflows/benchmarks.yml

Lines changed: 0 additions & 71 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,21 @@ jobs:
2323
- name: Checkout source
2424
uses: actions/checkout@v4
2525

26-
- name: Setup CMake
27-
uses: lukka/get-cmake@latest
26+
- name: Install LLVM (Ubuntu)
27+
if: matrix.os == 'ubuntu-latest'
28+
run: |
29+
sudo apt-get update
30+
sudo apt-get install -y llvm-dev libclang-dev clang
31+
32+
- name: Install LLVM (macOS)
33+
if: matrix.os == 'macos-latest'
34+
run: |
35+
brew install llvm
36+
echo "CMAKE_PREFIX_PATH=$(brew --prefix llvm)" >> $GITHUB_ENV
37+
38+
- name: Install LLVM (Windows)
39+
if: matrix.os == 'windows-latest'
40+
run: choco install llvm -y
2841

2942
- name: Configure
3043
shell: bash

0 commit comments

Comments
 (0)