diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index a4e9c945b6f..b553845734f 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -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: |