workflows/test: add Jammy, versions 14-15
This commit is contained in:
parent
5cc3e08645
commit
7eeaf563e4
2 changed files with 31 additions and 18 deletions
17
.github/workflows/test.yml
vendored
17
.github/workflows/test.yml
vendored
|
@ -13,7 +13,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
platform: [x86, x64]
|
platform: [x86, x64]
|
||||||
os: [ubuntu-18.04, ubuntu-20.04, ubuntu-latest, windows-2019, windows-2022, windows-latest]
|
os: [ubuntu-18.04, ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022]
|
||||||
runs-on: '${{ matrix.os }}'
|
runs-on: '${{ matrix.os }}'
|
||||||
name: 'Test: ${{ matrix.os }} / ${{ matrix.platform }}'
|
name: 'Test: ${{ matrix.os }} / ${{ matrix.platform }}'
|
||||||
steps:
|
steps:
|
||||||
|
@ -37,14 +37,25 @@ jobs:
|
||||||
versions:
|
versions:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-18.04, ubuntu-20.04]
|
os: [ubuntu-18.04, ubuntu-20.04, ubuntu-22.04]
|
||||||
version: ['3.9', '4.0', 4, '5.0', 5, '6.0', 6, 7, 8, 9, 10, 11, 12, 13]
|
version: ['3.9', '4.0', 4, '5.0', 5, '6.0', 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
|
||||||
exclude:
|
exclude:
|
||||||
- {os: ubuntu-20.04, version: '3.9'}
|
- {os: ubuntu-20.04, version: '3.9'}
|
||||||
- {os: ubuntu-20.04, version: '4.0'}
|
- {os: ubuntu-20.04, version: '4.0'}
|
||||||
- {os: ubuntu-20.04, version: 4}
|
- {os: ubuntu-20.04, version: 4}
|
||||||
- {os: ubuntu-20.04, version: '5.0'}
|
- {os: ubuntu-20.04, version: '5.0'}
|
||||||
- {os: ubuntu-20.04, version: 5}
|
- {os: ubuntu-20.04, version: 5}
|
||||||
|
- {os: ubuntu-22.04, version: '3.9'}
|
||||||
|
- {os: ubuntu-22.04, version: '4.0'}
|
||||||
|
- {os: ubuntu-22.04, version: 4}
|
||||||
|
- {os: ubuntu-22.04, version: '5.0'}
|
||||||
|
- {os: ubuntu-22.04, version: 5}
|
||||||
|
- {os: ubuntu-22.04, version: '6.0'}
|
||||||
|
- {os: ubuntu-22.04, version: 6}
|
||||||
|
- {os: ubuntu-22.04, version: 7}
|
||||||
|
- {os: ubuntu-22.04, version: 8}
|
||||||
|
- {os: ubuntu-22.04, version: 9}
|
||||||
|
- {os: ubuntu-22.04, version: 10}
|
||||||
runs-on: '${{ matrix.os }}'
|
runs-on: '${{ matrix.os }}'
|
||||||
name: 'Version: ${{ matrix.os }} / ${{ matrix.version }}'
|
name: 'Version: ${{ matrix.os }} / ${{ matrix.version }}'
|
||||||
steps:
|
steps:
|
||||||
|
|
32
README.md
32
README.md
|
@ -61,22 +61,24 @@ The `version` parameter value is not checked for being an available version for
|
||||||
the current distribution.
|
the current distribution.
|
||||||
The supported versions for a particular distribution are those found in that
|
The supported versions for a particular distribution are those found in that
|
||||||
distro's repositories & those in the LLVM repository.
|
distro's repositories & those in the LLVM repository.
|
||||||
For example, the supported versions for Bionic & Focal as of August 2021 are
|
For example, you can find the list of available versions as of January 2023
|
||||||
listed below.
|
below.
|
||||||
|
|
||||||
| `version` | Bionic | Focal
|
| `version` | Bionic | Focal | Jammy
|
||||||
| --------- | ------ | -----
|
| --------- | ------ | ----- | -----
|
||||||
| 3.9 | ✓ |
|
| 3.9 | ✓ | |
|
||||||
| 4.0 | ✓ |
|
| 4.0 | ✓ | |
|
||||||
| 5.0 | ✓ |
|
| 5.0 | ✓ | |
|
||||||
| 6.0 | ✓ | ✓
|
| 6.0 | ✓ | ✓ |
|
||||||
| 7 | ✓ | ✓
|
| 7 | ✓ | ✓ |
|
||||||
| 8 | ✓ | ✓
|
| 8 | ✓ | ✓ |
|
||||||
| 9 | ✓ | ✓
|
| 9 | ✓ | ✓ |
|
||||||
| 10 | ✓ | ✓
|
| 10 | ✓ | ✓ |
|
||||||
| 11 | ✓ | ✓
|
| 11 | ✓ | ✓ | ✓
|
||||||
| 12 | ✓ | ✓
|
| 12 | ✓ | ✓ | ✓
|
||||||
| 13 | ✓ | ✓
|
| 13 | ✓ | ✓ | ✓
|
||||||
|
| 14 | ✓ | ✓ | ✓
|
||||||
|
| 15 | ✓ | ✓ | ✓
|
||||||
|
|
||||||
This table is not definitive; I expect more future versions to be made
|
This table is not definitive; I expect more future versions to be made
|
||||||
available, especially for Focal.
|
available, especially for Focal.
|
||||||
|
|
Loading…
Add table
Reference in a new issue