aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/configs-build.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/configs-build.yml')
-rw-r--r--.github/workflows/configs-build.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/configs-build.yml b/.github/workflows/configs-build.yml
new file mode 100644
index 000000000..b81ce92b0
--- /dev/null
+++ b/.github/workflows/configs-build.yml
@@ -0,0 +1,27 @@
+name: configs-ci
+
+on:
+ push:
+ branches: [ main ]
+ pull_request:
+ branches: [ main ]
+
+permissions:
+ contents: read
+
+jobs:
+ build:
+ runs-on: ubuntu-20.04
+
+ steps:
+ - uses: actions/checkout@v3
+ - name: install dependencies
+ run: sudo apt-get install gcc
+ - name: HB_DISABLE_DEPRECATED
+ run: g++ -std=c++11 -c src/harfbuzz.cc -DHB_DISABLE_DEPRECATED
+ - name: HB_MINI
+ run: g++ -std=c++11 -c src/harfbuzz.cc -DHB_MINI
+ - name: HB_LEAN
+ run: g++ -std=c++11 -c src/harfbuzz.cc -DHB_LEAN
+ - name: HB_TINY
+ run: g++ -std=c++11 -c src/harfbuzz.cc -DHB_TINY