Only build amd64/arm64... Nobody really has an s390x in their basement do they? Except that one kid...
This commit is contained in:
parent
89b9df5229
commit
1907b56221
1 changed files with 5 additions and 2 deletions
7
.github/workflows/perl.yml
vendored
7
.github/workflows/perl.yml
vendored
|
|
@ -17,6 +17,9 @@ concurrency:
|
||||||
group: ${{ github.head_ref || github.run_id }}
|
group: ${{ github.head_ref || github.run_id }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
env:
|
||||||
|
PLATFORMS: linux/amd64,linux/arm64
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
perl-build:
|
perl-build:
|
||||||
name: "Build Perl"
|
name: "Build Perl"
|
||||||
|
|
@ -58,7 +61,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
target: release
|
target: release
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: ${{ env.PLATFORMS }}
|
||||||
push: true
|
push: true
|
||||||
tags: |
|
tags: |
|
||||||
ghcr.io/benzine-framework/perl:${{ matrix.ubuntu }}
|
ghcr.io/benzine-framework/perl:${{ matrix.ubuntu }}
|
||||||
|
|
@ -80,7 +83,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
target: release
|
target: release
|
||||||
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/arm/v7
|
platforms: ${{ env.PLATFORMS }}
|
||||||
push: true
|
push: true
|
||||||
tags: |
|
tags: |
|
||||||
ghcr.io/benzine-framework/perl:${{ steps.perl_version.outputs.perl_version }}-${{ matrix.ubuntu }}
|
ghcr.io/benzine-framework/perl:${{ steps.perl_version.outputs.perl_version }}-${{ matrix.ubuntu }}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue