From aef92b2846f08f99a30b2bd491b046c33576a884 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sun, 5 Jun 2022 00:44:31 -0600 Subject: [PATCH] [ci] Better compiler specification in configs-build job --- .github/workflows/configs-build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/configs-build.yml b/.github/workflows/configs-build.yml index 105122845..ee84145e9 100644 --- a/.github/workflows/configs-build.yml +++ b/.github/workflows/configs-build.yml @@ -15,10 +15,10 @@ jobs: - name: install dependencies run: sudo apt-get install gcc - name: HB_DISABLE_DEPRECATED - run: gcc -c src/harfbuzz.cc -DHB_DISABLE_DEPRECATED + run: g++ -std=c++11 -c src/harfbuzz.cc -DHB_DISABLE_DEPRECATED - name: HB_MINI - run: gcc -c src/harfbuzz.cc -DHB_MINI + run: g++ -std=c++11 -c src/harfbuzz.cc -DHB_MINI - name: HB_LEAN - run: gcc -c src/harfbuzz.cc -DHB_LEAN + run: g++ -std=c++11 -c src/harfbuzz.cc -DHB_LEAN - name: HB_TINY - run: gcc -c src/harfbuzz.cc -DHB_TINY + run: g++ -std=c++11 -c src/harfbuzz.cc -DHB_TINY