Skip to content

Commit 2e01b33

Browse files
committedFeb 7, 2025
Fix #6531 Use GitHub-hosted Ubuntu/AArch64 runner
1 parent 123622a commit 2e01b33

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed
 

‎.github/workflows/integration-tests.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ jobs:
3535
- os: ubuntu-latest
3636
release-args: "--alpine"
3737
cache-bust: "2024-05-17"
38+
# On public preview since 16 January 2025
39+
- os: ubuntu-24.04-arm
40+
release-args: "--alpine --stack-args --docker-stack-exe=image"
41+
cache-bust: "2025-02-07b"
3842
- os: windows-latest
3943
release-args: ""
4044
cache-bust: "2024-05-17"
@@ -68,9 +72,10 @@ jobs:
6872
run: |
6973
set -ex
7074
71-
if [[ "${{ matrix.os }}" == "macos-13" || "${{ matrix.os }}" == "macos-latest" ]]
75+
if [[ "${{ matrix.os }}" == "ubuntu-24.04-arm" || "${{ matrix.os }}" == "macos-13" || "${{ matrix.os }}" == "macos-latest" ]]
7276
then
73-
# macos-13 and macos-latest do not include Haskell tools as at 2024-05-06.
77+
# ubuntu-24.04-arm, macos-13 and macos-latest do not include Haskell
78+
# tools as at 2025-02-07.
7479
curl -sSL https://get.haskellstack.org/ | sh
7580
fi
7681

0 commit comments

Comments
 (0)