HarfBuzz text shaping engine http://harfbuzz.github.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
1.3 KiB

version: 2
branches:
ignore:
- gh-pages
jobs:
base:
docker:
- image: dockcross/base
steps:
- checkout
- run: apt update && apt install ragel
- run: cmake -Bbuild -H. -GNinja && ninja -Cbuild
android-arm:
docker:
- image: dockcross/android-arm
steps:
- checkout
- run: apt update && apt install ragel
- run: cmake -Bbuild -H. -GNinja && ninja -Cbuild
browser-asmjs:
docker:
- image: dockcross/browser-asmjs
steps:
- checkout
- run: apt update && apt install ragel
- run: cmake -Bbuild -H. -GNinja && ninja -Cbuild
linux-arm64:
docker:
- image: dockcross/linux-arm64
steps:
- checkout
- run: apt update && apt install ragel
- run: cmake -Bbuild -H. -GNinja && ninja -Cbuild
linux-mips:
docker:
- image: dockcross/linux-mips
steps:
- checkout
- run: apt update && apt install ragel
- run: cmake -Bbuild -H. -GNinja && ninja -Cbuild
windows-x64:
docker:
- image: dockcross/windows-x64
steps:
- checkout
- run: apt update && apt install ragel
- run: cmake -Bbuild -H. -GNinja && ninja -Cbuild
workflows:
version: 2
build:
jobs:
- base
- android-arm
- browser-asmjs
- linux-arm64
- linux-mips
- windows-x64