mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-11 15:52:57 +00:00
GitHub actions will start failing jobs using Ubuntu 20.04 images, so switch to 24.04. Switch also on CircleCI while at it.
27 lines
653 B
YAML
27 lines
653 B
YAML
name: configs-ci
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-24.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
- 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
|