diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-04-26 19:12:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-26 19:12:08 +0200 |
commit | f89ece678c47a54a28c91c2d0ced65ba3e9a6540 (patch) | |
tree | 06a262e488650e6f3edaeabfb4c2634a5af273f0 | |
parent | 2e40ea5121065558d493cddf8a94db57f87acd3e (diff) | |
download | libquotient-f89ece678c47a54a28c91c2d0ced65ba3e9a6540.tar.gz libquotient-f89ece678c47a54a28c91c2d0ced65ba3e9a6540.zip |
CI: Use GCC 9 where GCC 8 was
GitHub images no more have GCC 8.
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd6f489e..24681460 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,7 @@ jobs: - name: Setup build environment run: | if [ "${{ matrix.compiler }}" == "GCC" ]; then - if [ -n "${{ matrix.update-api }}" ]; then VERSION_POSTFIX='-8'; fi + if [ -n "${{ matrix.update-api }}" ]; then VERSION_POSTFIX='-9'; fi echo "CC=gcc$VERSION_POSTFIX" >>$GITHUB_ENV echo "CXX=g++$VERSION_POSTFIX" >>$GITHUB_ENV else |