We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1e79efb + 998e146 commit 8c4b31aCopy full SHA for 8c4b31a
1 file changed
.github/workflows/build.yml
@@ -115,7 +115,16 @@ jobs:
115
116
linux-amd64:
117
needs: build
118
- runs-on: [ubuntu-latest]
+ strategy:
119
+ matrix:
120
+ include:
121
+ - runner: ubuntu-latest
122
+ arch: x64
123
+ arch_name: amd64
124
125
+ arch: aarch64
126
+ arch_name: arm64
127
+ runs-on: ${{ matrix.runner }}
128
129
steps:
130
- uses: actions/checkout@v4
@@ -127,7 +136,7 @@ jobs:
136
with:
137
java-version: '21'
138
java-package: jdk
- architecture: x64
139
+ architecture: ${{ matrix.arch }}
131
140
distribution: oracle
132
141
- name: Download fat jar
133
142
uses: actions/download-artifact@v4
0 commit comments