Skip to content

Commit

Permalink
Enable build workflow on ARM CPUs. They've now been available for a f…
Browse files Browse the repository at this point in the history
…ew months (in public beta)
  • Loading branch information
mherger committed Jan 20, 2025
1 parent 206ddf2 commit a272139
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/buildCPAN.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit a272139

Please sign in to comment.