Skip to content

Commit

Permalink
workflows/test: add Jammy, GCC 12
Browse files Browse the repository at this point in the history
  • Loading branch information
egor-tensin committed Jan 2, 2023
1 parent 4f503ae commit 4435542
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
platform: [x86, x64]
os: [ubuntu-18.04, ubuntu-20.04, ubuntu-latest]
os: [ubuntu-18.04, ubuntu-20.04, ubuntu-22.04]
runs-on: '${{ matrix.os }}'
name: 'Test: ${{ matrix.os }} / ${{ matrix.platform }}'
steps:
Expand All @@ -34,12 +34,19 @@ jobs:
versions:
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-20.04]
version: [4.8, 5, 6, 7, 8, 9, 10, 11]
os: [ubuntu-18.04, ubuntu-20.04, ubuntu-22.04]
version: [4.8, 5, 6, 7, 8, 9, 10, 11, 12]
exclude:
- {os: ubuntu-18.04, version: 12}
- {os: ubuntu-20.04, version: 4.8}
- {os: ubuntu-20.04, version: 5}
- {os: ubuntu-20.04, version: 6}
- {os: ubuntu-20.04, version: 12}
- {os: ubuntu-22.04, version: 4.8}
- {os: ubuntu-22.04, version: 5}
- {os: ubuntu-22.04, version: 6}
- {os: ubuntu-22.04, version: 7}
- {os: ubuntu-22.04, version: 8}
runs-on: '${{ matrix.os }}'
name: 'Version: ${{ matrix.os }} / ${{ matrix.version }}'
steps:
Expand Down

0 comments on commit 4435542

Please sign in to comment.