Skip to content

Commit

Permalink
Update matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
sebymiano committed May 30, 2024
1 parent abfe40f commit 831665a
Showing 1 changed file with 8 additions and 24 deletions.
32 changes: 8 additions & 24 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,39 +9,23 @@ on:
- cron: '0 0 1 * *'

jobs:
build-llv15:
build-test:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- llvm: "15"
- llvm: "18"
- llvm: "19"
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2
with:
version: "15.0"
- name: Install deps
run: |
chmod +x tools/install_deps.sh
./tools/install_deps.sh -s
- name: Build and test
run: |
make test
build-llv19:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2
with:
version: "19.0"
- name: Install deps
run: |
chmod +x tools/install_deps.sh
./tools/install_deps.sh -s
./tools/install_deps.sh -l ${{ matrix.llvm }}
- name: Build and test
run: |
make test

0 comments on commit 831665a

Please sign in to comment.