From a272139ad6feb3c597a91e03f661d5c12ffe181e Mon Sep 17 00:00:00 2001 From: Michael Herger Date: Mon, 20 Jan 2025 14:05:38 +0100 Subject: [PATCH] Enable build workflow on ARM CPUs. They've now been available for a few months (in public beta) --- .github/workflows/buildCPAN.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/buildCPAN.yaml b/.github/workflows/buildCPAN.yaml index 828def1ab..ca09b3b0a 100644 --- a/.github/workflows/buildCPAN.yaml +++ b/.github/workflows/buildCPAN.yaml @@ -19,9 +19,8 @@ on: type: choice options: - amd64 - # not supported by Github yet, but would succees using ACT on Apple Silicon - # - arm64 - # - arm/v7 + - arm64 + - arm/v7 required: true default: amd64 module: @@ -32,7 +31,7 @@ on: jobs: buildCPAN: name: Build Perl CPAN modules - runs-on: ubuntu-latest + runs-on: ${{ inputs.platform == 'amd64' && 'ubuntu-latest' || 'ubuntu-latest-arm' }} steps: - uses: actions/checkout@v4