Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,19 @@ jobs:
- os: macos-15
platform: macos-arm64
arch_flag: "" # ARM64 uses auto-detection
compiler: default
- os: ubuntu-24.04-arm
platform: linux-arm64
arch_flag: "" # ARM64 uses auto-detection
compiler: default
- os: ubuntu-24.04
platform: linux-x64
arch_flag: "" # Use native CPU microarchitecture
compiler: default
- os: ubuntu-24.04
platform: linux-x64-clang
arch_flag: ""
compiler: clang

steps:
- name: Checkout code
Expand All @@ -101,6 +108,15 @@ jobs:
cache: 'pip'
cache-dependency-path: 'pyproject.toml'

- name: Install Clang
if: matrix.compiler == 'clang'
run: |
sudo apt-get update
sudo apt-get install -y clang
echo "CC=clang" >> $GITHUB_ENV
echo "CXX=clang++" >> $GITHUB_ENV
shell: bash

- name: Set up environment variables
run: |
# Set number of processors for parallel builds
Expand Down
Loading