ci: skip xcode tests for freetype build

pull/11276/head
Mitchell Hashimoto 2026-03-10 09:40:20 -07:00
parent 9759787847
commit 4e24adf717
No known key found for this signature in database
GPG Key ID: 523D5DC389D273BC
1 changed files with 3 additions and 1 deletions

View File

@ -696,9 +696,11 @@ jobs:
id: deps
run: nix build -L .#deps && echo "deps=$(readlink ./result)" >> $GITHUB_OUTPUT
# We run tests with an empty test filter so it runs all unit tests
# but skips Xcode tests
- name: Test All
run: |
nix develop -c zig build test --system ${{ steps.deps.outputs.deps }} -Drenderer=metal -Dfont-backend=coretext_freetype
nix develop -c zig build test --system ${{ steps.deps.outputs.deps }} -Drenderer=metal -Dfont-backend=coretext_freetype -Dtest-filter=""
- name: Build All
run: |