Skip to content

Commit

Permalink
Install g++-13 in Linux workflow as it's no longer installed by default
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkrupinski committed May 15, 2024
1 parent ecb9998 commit 37954c1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ jobs:
configuration: [Debug, Release]
steps:
- uses: actions/checkout@v4
- name: install g++-13
if: matrix.compiler == 'g++-13'
run: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update && sudo apt-get install -y g++-13
- name: install clang++-16
if: matrix.compiler == 'clang++-16'
run: |
Expand Down

0 comments on commit 37954c1

Please sign in to comment.