Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add aarch64 alpine bindist test #268

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/bindists.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,13 @@ jobs:
include:
- os: [self-hosted, Linux, ARM64, maerwald]
ARCH: ARM
DISTRO: Debian
- os: [self-hosted, Linux, ARM64, maerwald]
ARCH: ARM64
DISTRO: Debian
- os: [self-hosted, Linux, ARM64, maerwald]
ARCH: ARM64
DISTRO: Alpine
steps:
- uses: docker://arm64v8/ubuntu:focal
name: Cleanup (aarch64 linux)
Expand All @@ -188,12 +193,18 @@ jobs:
with:
args: sh -c '.github/workflows/install-bindist.sh'

- if: matrix.ARCH == 'ARM64'
- if: matrix.ARCH == 'ARM64' && matrix.DISTRO == 'Debian'
uses: docker://hasufell/arm64v8-ubuntu-haskell:focal
name: Run build (aarch64 linux)
with:
args: sh -c '.github/workflows/install-bindist.sh'

- if: matrix.ARCH == 'ARM64' && matrix.DISTRO == 'Alpine'
uses: docker://hasufell/arm64v8-alpine-haskell:3.20
name: Run build (aarch64 alpine)
with:
args: sh -c '.github/workflows/install-bindist.sh'

bindist-install-arm-alpine:
name: Build ARM binary (alpine)
runs-on: [self-hosted, Linux, ARM64, maerwald]
Expand Down
Loading