Skip to content

Commit

Permalink
try to use more recent ubuntu for llvm 16
Browse files Browse the repository at this point in the history
  • Loading branch information
folkertdev committed Jul 21, 2023
1 parent 30072e2 commit 74cbef2
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
os:
- ubuntu-20.04
- ubuntu-22.04
llvm-version:
- ["4.0", "4-0"]
- ["5.0", "5-0"]
Expand All @@ -29,6 +31,24 @@ jobs:
- ["14.0", "14-0"]
- ["15.0", "15-0"]
- ["16.0", "16-0"]
# only use ubuntu-22.04 for llvm 16 and higher
exclude:
- os: ubuntu-20.04
llvm-version: ["16.0", "16-0"]
- os: ubuntu-22.04
llvm-version:
- ["4.0", "4-0"]
- ["5.0", "5-0"]
- ["6.0", "6-0"]
- ["7.0", "7-0"]
- ["8.0", "8-0"]
- ["9.0", "9-0"]
- ["10.0", "10-0"]
- ["11.0", "11-0"]
- ["12.0", "12-0"]
- ["13.0", "13-0"]
- ["14.0", "14-0"]
- ["15.0", "15-0"]
steps:
- name: Checkout Repo
uses: actions/checkout@v3
Expand Down

0 comments on commit 74cbef2

Please sign in to comment.