[ci] Better compiler specification in configs-build job

This commit is contained in:
Behdad Esfahbod 2022-06-05 00:44:31 -06:00
parent cb961eac5c
commit aef92b2846
1 changed files with 4 additions and 4 deletions

View File

@ -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