Skip to content

Commit c482c82

Browse files
committed
Add GitHub build
1 parent b318129 commit c482c82

File tree

3 files changed

+37
-2
lines changed

3 files changed

+37
-2
lines changed

.editorconfig

+3
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@ insert_final_newline = true
1010

1111
[gradle/verification-metadata.xml]
1212
indent_size = 3
13+
14+
[*.{json,yml,yaml}]
15+
indent_size = 2

.github/workflows/build.yaml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Build Gradle project
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
build:
8+
runs-on: macos-14
9+
10+
steps:
11+
- name: Checkout project sources
12+
uses: actions/checkout@v4
13+
with:
14+
fetch-depth: 0
15+
16+
- name: Set up JDK
17+
uses: actions/setup-java@v4
18+
with:
19+
distribution: 'temurin'
20+
java-version: '21'
21+
22+
- name: Setup Zig
23+
uses: goto-bus-stop/setup-zig@v2
24+
with:
25+
version: '0.13.0'
26+
27+
- name: Setup Gradle
28+
uses: gradle/actions/setup-gradle@v4
29+
30+
- name: Build
31+
run: |
32+
./gradlew build

libc-macos.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# The directory that contains `stdlib.h`.
22
# On POSIX-like systems, include directories be found with: `cc -E -Wp,-v -xc /dev/null`
3-
include_dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include
3+
include_dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include
44

55
# The system-specific include directory. May be the same as `include_dir`.
66
# On Windows it's the directory that includes `vcruntime.h`.
77
# On POSIX it's the directory that includes `sys/errno.h`.
8-
sys_include_dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include
8+
sys_include_dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include
99

1010
# The directory that contains `crt1.o` or `crt2.o`.
1111
# On POSIX, can be found with `cc -print-file-name=crt1.o`.

0 commit comments

Comments
 (0)