Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 4 additions & 9 deletions .github/workflows/server-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ jobs:
- os: ubuntu-latest
artifact-name: kuken-server-linux-amd64
archive-ext: tar.gz
- os: ubuntu-24.04-arm
artifact-name: kuken-server-linux-arm64
archive-ext: tar.gz
- os: windows-latest
artifact-name: kuken-server-windows-amd64
archive-ext: zip
Expand Down Expand Up @@ -62,14 +65,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew buildFatJar

- name: Build Native Image (Linux)
if: matrix.os == 'ubuntu-latest'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew nativeCompile

- name: Build Native Image (Windows)
if: matrix.os == 'windows-latest'
- name: Build Native Image
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew nativeCompile
Expand All @@ -94,4 +90,3 @@ jobs:
with:
name: ${{ matrix.artifact-name }}
path: server/build/native/nativeCompile/

Loading