Skip to content

Commit d5c1053

Browse files
committed
run native image directly
1 parent f680250 commit d5c1053

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/graalvm-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
uses: gradle/gradle-build-action@v2
4242

4343
- name: Build server
44-
run: ./gradlew :${server}:build
44+
run: ./gradlew :${server}:build :${server}:nativeCompile
4545
env:
4646
server: ${{ matrix.server }}
4747

@@ -50,7 +50,7 @@ jobs:
5050
run: |
5151
set -x
5252
echo "starting server"
53-
./gradlew :${server}:nativeRun &
53+
./${server}/build/native/nativeCompile/${server} &
5454
echo "SERVER_PID=$(echo $!)" >> $GITHUB_OUTPUT
5555
env:
5656
server: ${{ matrix.server }}

0 commit comments

Comments
 (0)