mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-11 15:52:57 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.1 to 4.2.2.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](eef61447b9...11bd71901b
)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
25 lines
551 B
YAML
25 lines
551 B
YAML
name: arm
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
arm-none-eabi:
|
|
runs-on: ubuntu-22.04
|
|
container:
|
|
image: devkitpro/devkitarm:latest
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
- name: Configure CMake
|
|
run: |
|
|
cmake -S . -B build \
|
|
-DCMAKE_TOOLCHAIN_FILE=${DEVKITPRO}/cmake/3DS.cmake
|
|
- name: Build
|
|
run: make CXX_FLAGS="-w -DHB_NO_MT"
|
|
working-directory: build
|