mirror of
https://github.com/mpusz/mp-units.git
synced 2025-08-06 13:44:27 +02:00
ci: check if gcc-13 is available
This commit is contained in:
18
.github/workflows/ci-conan.yml
vendored
18
.github/workflows/ci-conan.yml
vendored
@@ -79,6 +79,19 @@ jobs:
|
||||
},
|
||||
conan-config: "",
|
||||
}
|
||||
- {
|
||||
name: "Ubuntu GCC-13",
|
||||
os: ubuntu-22.04,
|
||||
compiler:
|
||||
{
|
||||
type: GCC,
|
||||
version: 13,
|
||||
cc: "gcc-13",
|
||||
cxx: "g++-13",
|
||||
std: 20,
|
||||
},
|
||||
conan-config: "",
|
||||
}
|
||||
- {
|
||||
name: "Ubuntu Clang-16 + libc++",
|
||||
os: ubuntu-22.04,
|
||||
@@ -137,6 +150,11 @@ jobs:
|
||||
shell: bash
|
||||
run: |
|
||||
sudo apt install -y g++-${{ matrix.config.compiler.version }}
|
||||
- name: Install gcc-13
|
||||
if: matrix.config.compiler.type == 'GCC' && matrix.config.compiler.version == '13'
|
||||
shell: bash
|
||||
run: |
|
||||
sudo apt install -y g++-${{ matrix.config.compiler.version }}
|
||||
- name: Install Clang
|
||||
if: matrix.config.compiler.type == 'CLANG'
|
||||
shell: bash
|
||||
|
Reference in New Issue
Block a user