Skip to content

Commit

Permalink
ci: check if gcc-13 is available
Browse files Browse the repository at this point in the history
  • Loading branch information
mpusz committed Aug 26, 2023
1 parent 66a37e0 commit d42c89e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci-conan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit d42c89e

Please sign in to comment.