Skip to content

Commit cf8627d

Browse files
committed
Fix workflow failure for older compilers on Linux
Those older compilers are not available on the `ubuntu-latest` runner images, because that currently is Ubuntu 22.04. However, they are available on Ubuntu 20.04, so we can use that instead.
1 parent 7be1e0b commit cf8627d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
- clang++-9
8888
build_type: [Debug, Release]
8989

90-
runs-on: ubuntu-latest
90+
runs-on: ubuntu-20.04
9191

9292
env:
9393
CXX: ${{ matrix.compiler }}

0 commit comments

Comments
 (0)