Skip to content

Commit 976f619

Browse files
committed
Use ninja for macOS CI builds
This change enables the usage of `ninja` instead of `gmake` to speed up macOS builds on GH actions.
1 parent 5f877ad commit 976f619

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/Java.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,14 +247,15 @@ jobs:
247247
name: Java OSX (Universal)
248248
runs-on: macos-14
249249
needs: java-linux-amd64
250+
env:
251+
GEN: ninja
250252
steps:
251253
- uses: actions/checkout@v4
252254
with:
253255
fetch-depth: 0
254256

255-
- uses: actions/setup-python@v5
256-
with:
257-
python-version: "3.12"
257+
- name: Install Ninja
258+
run: brew install ninja
258259

259260
- name: Build
260261
shell: bash

0 commit comments

Comments
 (0)