Skip to content

Commit

Permalink
workflows: test against LLVM 18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
airwoodix committed Aug 19, 2024
1 parent 393a1b8 commit 1dc6194
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,21 @@ jobs:
- ["15.0", "15-0"]
- ["16.0", "16-0"]
- ["17.0", "17-0"]
- ["18.1", "18-0"]
include:
- os: ubuntu-20.04
# only use ubuntu-22.04 for llvm 16 and higher
- os: ubuntu-22.04
llvm-version: ["16.0", "16-0"]
- os: ubuntu-22.04
llvm-version: ["17.0", "17-0"]
- os: ubuntu-22.04
llvm-version: ["18.1", "18-0"]
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1
uses: KyleMayes/install-llvm-action@v2
with:
version: ${{ matrix.llvm-version[0] }}
- name: llvm-config
Expand All @@ -70,7 +73,7 @@ jobs:
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v4
- uses: KyleMayes/install-llvm-action@v1
- uses: KyleMayes/install-llvm-action@v2
with:
version: ${{ env.DOC_LLVM_VERSION }}
- name: Install Rust Nightly
Expand Down

0 comments on commit 1dc6194

Please sign in to comment.