From 9ceb5ed8b93aaf23f9874cd4093f6082da63a445 Mon Sep 17 00:00:00 2001 From: Rafael Rain Date: Thu, 15 Jan 2026 23:57:58 -0300 Subject: [PATCH 1/2] ci(build-server): Add linux-arm64 native build --- .github/workflows/server-build.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/server-build.yml b/.github/workflows/server-build.yml index 1fe82db2..888daee4 100644 --- a/.github/workflows/server-build.yml +++ b/.github/workflows/server-build.yml @@ -22,6 +22,9 @@ jobs: - os: ubuntu-latest artifact-name: kuken-server-linux-amd64 archive-ext: tar.gz + - os: ubuntu-latest-arm64 + artifact-name: kuken-server-linux-arm64 + archive-ext: tar.gz - os: windows-latest artifact-name: kuken-server-windows-amd64 archive-ext: zip @@ -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 @@ -94,4 +90,3 @@ jobs: with: name: ${{ matrix.artifact-name }} path: server/build/native/nativeCompile/ - From 95043a9da5325e54d2a21aa874efbf4bbc069575 Mon Sep 17 00:00:00 2001 From: Rafael Rain Date: Fri, 16 Jan 2026 00:02:41 -0300 Subject: [PATCH 2/2] fix: change ubuntu arm os name --- .github/workflows/server-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/server-build.yml b/.github/workflows/server-build.yml index 888daee4..50c61c7a 100644 --- a/.github/workflows/server-build.yml +++ b/.github/workflows/server-build.yml @@ -22,7 +22,7 @@ jobs: - os: ubuntu-latest artifact-name: kuken-server-linux-amd64 archive-ext: tar.gz - - os: ubuntu-latest-arm64 + - os: ubuntu-24.04-arm artifact-name: kuken-server-linux-arm64 archive-ext: tar.gz - os: windows-latest