File tree 3 files changed +37
-2
lines changed
3 files changed +37
-2
lines changed Original file line number Diff line number Diff line change @@ -10,3 +10,6 @@ insert_final_newline = true
10
10
11
11
[gradle/verification-metadata.xml ]
12
12
indent_size = 3
13
+
14
+ [* .{json,yml,yaml} ]
15
+ indent_size = 2
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
# The directory that contains `stdlib.h`.
2
2
# 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
4
4
5
5
# The system-specific include directory. May be the same as `include_dir`.
6
6
# On Windows it's the directory that includes `vcruntime.h`.
7
7
# 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
9
9
10
10
# The directory that contains `crt1.o` or `crt2.o`.
11
11
# On POSIX, can be found with `cc -print-file-name=crt1.o`.
You can’t perform that action at this time.
0 commit comments