hsutter / cppfront

A personal experimental C++ Syntax 2 -> Syntax 1 compiler
Other
5.24k stars 224 forks source link

[CI] Fix `g++-13` regression test job #1076

Closed bluetarpmedia closed 1 month ago

bluetarpmedia commented 1 month ago

From what I can gather something has changed with the GitHub Actions images.

The g++-13 regression test job previously ran fine on the ubuntu-latest image but that stopped working on 16 May, with the error: The compiler 'g++-13' is not installed.

I've updated it to run on ubuntu-2404, which is documented as having gcc 13 installed.

(Note there's still a separate task failing for clang++-15 on ubuntu-latest which I'll try and fix in a separate PR.)

EDIT: The clang++-15 job fix is PR #1077

hsutter commented 1 month ago

Thanks, Neil!