Skip to content

Commit 4b091e6

Browse files
authored
Add CI run on Linux arm64 (#1656)
Signed-off-by: Daniel Widdis <[email protected]>
1 parent 02bf7cc commit 4b091e6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
java: [8, 11, 17, 21, 23]
2020
# macos-13 is x86, macos-latest is aarch64
2121
os: [ubuntu-latest, macos-13, macos-latest]
22+
include:
23+
- java: 17
24+
os: 'ubuntu-24.04-arm'
2225
# Run all tests even if one fails
2326
fail-fast: false
2427
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}
@@ -32,7 +35,9 @@ jobs:
3235
distribution: 'zulu'
3336
- name: Linux requirements
3437
if: contains(matrix.os, 'ubuntu')
35-
run: sudo apt-get install -yq --force-yes zip unzip libtool automake libltdl-dev texinfo ant ant-optional debhelper-compat default-jdk javahelper libasm-java libffi-dev libx11-dev libxt-dev maven-repo-helper pkg-config
38+
run: |
39+
sudo apt-get update
40+
sudo apt-get install -yq --allow-downgrades zip unzip libtool automake libltdl-dev texinfo ant ant-optional debhelper-compat default-jdk javahelper libasm-java libffi-dev libx11-dev libxt-dev maven-repo-helper pkg-config
3641
- name: macOS requirements
3742
if: contains(matrix.os, 'macos')
3843
run: |

0 commit comments

Comments
 (0)