aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-04-26 19:12:08 +0200
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-05-08 15:01:40 +0200
commit97cee4406349e8951ab6971119eddce9a1949e7b (patch)
treea9fc748c1582b9f9d13409fd7dc46e6f759ad9ca /.github/workflows/ci.yml
parent0ce00a737cd8cd87d12cff716071808b90a4919e (diff)
downloadlibquotient-97cee4406349e8951ab6971119eddce9a1949e7b.tar.gz
libquotient-97cee4406349e8951ab6971119eddce9a1949e7b.zip
CI: Use GCC 9 where GCC 8 was
GitHub images no more have GCC 8. (cherry picked from commit f89ece678c47a54a28c91c2d0ced65ba3e9a6540)
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 907a4a34..8a4a9d88 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -51,7 +51,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