Skip to content

Commit 8c4b31a

Browse files
committed
Merge remote-tracking branch 'origin/main' into bugfix/jdbc-ui
2 parents 1e79efb + 998e146 commit 8c4b31a

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,16 @@ jobs:
115115

116116
linux-amd64:
117117
needs: build
118-
runs-on: [ubuntu-latest]
118+
strategy:
119+
matrix:
120+
include:
121+
- runner: ubuntu-latest
122+
arch: x64
123+
arch_name: amd64
124+
- runner: ubuntu-latest
125+
arch: aarch64
126+
arch_name: arm64
127+
runs-on: ${{ matrix.runner }}
119128

120129
steps:
121130
- uses: actions/checkout@v4
@@ -127,7 +136,7 @@ jobs:
127136
with:
128137
java-version: '21'
129138
java-package: jdk
130-
architecture: x64
139+
architecture: ${{ matrix.arch }}
131140
distribution: oracle
132141
- name: Download fat jar
133142
uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)