diff options
| author | Laytan Laats <laytanlaats@hotmail.com> | 2025-11-08 19:53:50 +0100 |
|---|---|---|
| committer | Laytan Laats <laytanlaats@hotmail.com> | 2025-11-08 19:53:50 +0100 |
| commit | 2c7b4130ebd6e6afcd352d1816f850c665a32fcc (patch) | |
| tree | 70628ac5438e859830c0e81f637ec5d1a9989b7b /.github | |
| parent | d25839dd8c46d0e9f89ac8d0f4fa97a3f32a48cd (diff) | |
ci for ubuntu arm
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 696affc44..c1d46f47b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,9 +74,9 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-15-intel, macos-latest, ubuntu-latest] + os: [macos-15-intel, macos-latest, ubuntu-latest, ubuntu-24.04-arm] runs-on: ${{ matrix.os }} - name: ${{ matrix.os == 'macos-latest' && 'MacOS ARM' || (matrix.os == 'macos-15-intel' && 'MacOS Intel') || (matrix.os == 'ubuntu-latest' && 'Ubuntu') }} Build, Check, and Test + name: ${{ matrix.os == 'macos-latest' && 'MacOS ARM' || (matrix.os == 'macos-15-intel' && 'MacOS Intel') || (matrix.os == 'ubuntu-latest' && 'Ubuntu') || (matrix.os == 'ubuntu-24.04-arm' && 'Ubuntu ARM') }} Build, Check, and Test timeout-minutes: 15 steps: @@ -97,7 +97,7 @@ jobs: echo "$(brew --prefix llvm@20)/bin" >> $GITHUB_PATH - name: Download LLVM (Ubuntu) - if: matrix.os == 'ubuntu-latest' + if: matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-24.04-arm' run: | wget https://apt.llvm.org/llvm.sh chmod +x llvm.sh |