Merge 72689ca25b
into 6e80af98bd
This commit is contained in:
commit
0a157a8528
3 changed files with 42 additions and 33 deletions
31
.github/workflows/test.yml
vendored
31
.github/workflows/test.yml
vendored
|
@ -13,7 +13,13 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
platform: [x86, x64]
|
platform: [x86, x64]
|
||||||
os: [ubuntu-18.04, ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022]
|
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, windows-2019, windows-2022]
|
||||||
|
exclude:
|
||||||
|
# 32-bit builds on ubuntu-24.04 fail due to a bug in Ubuntu linux-azure
|
||||||
|
# kernel that Github runner images use.
|
||||||
|
# See: https://bugs.launchpad.net/ubuntu/+source/linux-signed-azure/+bug/2071445
|
||||||
|
# TODO: Remove this exclusion when the bugfix is available on the runners.
|
||||||
|
- {platform: x86, os: ubuntu-24.04}
|
||||||
runs-on: '${{ matrix.os }}'
|
runs-on: '${{ matrix.os }}'
|
||||||
name: 'Test: ${{ matrix.os }} / ${{ matrix.platform }}'
|
name: 'Test: ${{ matrix.os }} / ${{ matrix.platform }}'
|
||||||
steps:
|
steps:
|
||||||
|
@ -37,25 +43,24 @@ jobs:
|
||||||
versions:
|
versions:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-18.04, ubuntu-20.04, ubuntu-22.04]
|
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04]
|
||||||
version: ['3.9', '4.0', 4, '5.0', 5, '6.0', 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
|
version: ['6.0', 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
|
||||||
exclude:
|
exclude:
|
||||||
- {os: ubuntu-20.04, version: '3.9'}
|
|
||||||
- {os: ubuntu-20.04, version: '4.0'}
|
|
||||||
- {os: ubuntu-20.04, version: 4}
|
|
||||||
- {os: ubuntu-20.04, version: '5.0'}
|
|
||||||
- {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.0'}
|
||||||
- {os: ubuntu-22.04, version: 6}
|
- {os: ubuntu-22.04, version: 6}
|
||||||
- {os: ubuntu-22.04, version: 7}
|
- {os: ubuntu-22.04, version: 7}
|
||||||
- {os: ubuntu-22.04, version: 8}
|
- {os: ubuntu-22.04, version: 8}
|
||||||
- {os: ubuntu-22.04, version: 9}
|
- {os: ubuntu-22.04, version: 9}
|
||||||
- {os: ubuntu-22.04, version: 10}
|
- {os: ubuntu-22.04, version: 10}
|
||||||
|
- {os: ubuntu-24.04, version: '6.0'}
|
||||||
|
- {os: ubuntu-24.04, version: 6}
|
||||||
|
- {os: ubuntu-24.04, version: 7}
|
||||||
|
- {os: ubuntu-24.04, version: 8}
|
||||||
|
- {os: ubuntu-24.04, version: 9}
|
||||||
|
- {os: ubuntu-24.04, version: 10}
|
||||||
|
- {os: ubuntu-24.04, version: 11}
|
||||||
|
- {os: ubuntu-24.04, version: 12}
|
||||||
|
- {os: ubuntu-24.04, version: 13}
|
||||||
runs-on: '${{ matrix.os }}'
|
runs-on: '${{ matrix.os }}'
|
||||||
name: 'Version: ${{ matrix.os }} / ${{ matrix.version }}'
|
name: 'Version: ${{ matrix.os }} / ${{ matrix.version }}'
|
||||||
steps:
|
steps:
|
||||||
|
|
34
README.md
34
README.md
|
@ -61,29 +61,35 @@ 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, you can find the list of available versions as of January 2023
|
For example, you can find the list of available versions as of July 2024
|
||||||
below.
|
below.
|
||||||
|
|
||||||
| `version` | Bionic | Focal | Jammy
|
| `version` | Focal | Jammy | Noble
|
||||||
| --------- | ------ | ----- | -----
|
| --------- | ----- | ----- | -----
|
||||||
| 3.9 | ✓ | |
|
| 6.0 | ✓ | |
|
||||||
| 4.0 | ✓ | |
|
| 7 | ✓ | |
|
||||||
| 5.0 | ✓ | |
|
| 8 | ✓ | |
|
||||||
| 6.0 | ✓ | ✓ |
|
| 9 | ✓ | |
|
||||||
| 7 | ✓ | ✓ |
|
| 10 | ✓ | |
|
||||||
| 8 | ✓ | ✓ |
|
| 11 | ✓ | ✓ |
|
||||||
| 9 | ✓ | ✓ |
|
| 12 | ✓ | ✓ |
|
||||||
| 10 | ✓ | ✓ |
|
| 13 | ✓ | ✓ |
|
||||||
| 11 | ✓ | ✓ | ✓
|
|
||||||
| 12 | ✓ | ✓ | ✓
|
|
||||||
| 13 | ✓ | ✓ | ✓
|
|
||||||
| 14 | ✓ | ✓ | ✓
|
| 14 | ✓ | ✓ | ✓
|
||||||
| 15 | ✓ | ✓ | ✓
|
| 15 | ✓ | ✓ | ✓
|
||||||
|
| 16 | ✓ | ✓ | ✓
|
||||||
|
| 17 | ✓ | ✓ | ✓
|
||||||
|
| 18 | ✓ | ✓ | ✓
|
||||||
|
|
||||||
This table should be updated periodically; it's a work-in-progress.
|
This table should be updated periodically; it's a work-in-progress.
|
||||||
|
|
||||||
On Windows and Cygwin, the `version` parameter is ignored.
|
On Windows and Cygwin, the `version` parameter is ignored.
|
||||||
|
|
||||||
|
:warning: The 32-bit build on Noble Numbat (Ubuntu 24.04 LTS) is temporarily not supported
|
||||||
|
due to a bug in the linux-azure kernel used by Github runner images. See this
|
||||||
|
[bug report](https://bugs.launchpad.net/ubuntu/+source/linux-signed-azure/+bug/2071445)
|
||||||
|
for more information. Related [issue](https://bugs.launchpad.net/ubuntu/+source/linux-signed-azure/+bug/2071445)
|
||||||
|
on actions/runner-images.
|
||||||
|
|
||||||
License
|
License
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
|
|
@ -83,10 +83,8 @@ runs:
|
||||||
|
|
||||||
switch -Exact ($Version) {
|
switch -Exact ($Version) {
|
||||||
# Since version 7, they dropped the .0 suffix. The earliest
|
# Since version 7, they dropped the .0 suffix. The earliest
|
||||||
# version supported is 3.9 on Bionic; versions 4, 5 and 6 are
|
# version supported is 3.9 on Bionic; version 6 is
|
||||||
# mapped to LLVM-friendly 4.0, 5.0 and 6.0.
|
# mapped to LLVM-friendly 6.0.
|
||||||
'4' { '4.0' }
|
|
||||||
'5' { '5.0' }
|
|
||||||
'6' { '6.0' }
|
'6' { '6.0' }
|
||||||
default { $Version }
|
default { $Version }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue