Skip to content

Commit 2eb030d

Browse files
committed
fix broken config in native image
1 parent 1cf78b6 commit 2eb030d

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,8 @@ jobs:
1616
distribution: 'graalvm'
1717
- run: ./gradlew build
1818
- run: ./gradlew nativeCompile
19+
- name: Upload artifact
20+
uses: actions/upload-artifact@v4
21+
with:
22+
path: build/native/nativeCompile/xcresults
23+
name: xcresults

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ${{ matrix.agent }}
1010
strategy:
1111
matrix:
12-
agent: [ "macos-12", "macos-latest" ]
12+
agent: [ "macos-14", "macos-latest" ]
1313
steps:
1414
- uses: actions/checkout@v3
1515
- uses: graalvm/setup-graalvm@v1
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[
2+
{
3+
"name" : "io.eroshenkoam.xcresults.broken.BrokenConfig",
4+
"allDeclaredConstructors" : true,
5+
"allDeclaredMethods" : true,
6+
"allDeclaredFields" : true
7+
},
8+
{
9+
"name" : "io.eroshenkoam.xcresults.broken.BrokenStatusMatcher",
10+
"allDeclaredConstructors" : true,
11+
"allDeclaredMethods" : true,
12+
"allDeclaredFields" : true
13+
}
14+
]

0 commit comments

Comments
 (0)