Skip to content

Commit 8af7031

Browse files
author
nkowenski
committed
split alt builds
1 parent 536086a commit 8af7031

File tree

1 file changed

+32
-2
lines changed

1 file changed

+32
-2
lines changed

.github/workflows/build-alt.yaml

+32-2
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,43 @@ jobs:
3939
sudo apt-get install -y qemu-user-static
4040
sudo apt-get install -y rustc
4141
42-
- name: Build alt Images
42+
- name: Build alt Image armv5
4343
id: build_alt_image
4444
uses: redhat-actions/buildah-build@main
4545
with:
4646
image: ${{ env.IMAGE_NAMESPACE }}
4747
tags: alt-${{ env.IMAGE_TAGS }}
48-
platforms: linux/arm/v5, linux/arm/v7, linux/arm64/v8, linux/s390x #, linux/mips64le, linux/ppc64le,
48+
platforms: linux/arm/v5
49+
containerfiles: |
50+
./Dockerfile-others.gh
51+
52+
- name: Build alt Image s390
53+
id: build_alt_image
54+
uses: redhat-actions/buildah-build@main
55+
with:
56+
image: ${{ env.IMAGE_NAMESPACE }}
57+
tags: alt-${{ env.IMAGE_TAGS }}
58+
platforms: linux/s390x
59+
containerfiles: |
60+
./Dockerfile-others.gh
61+
62+
- name: Build alt Image armv8
63+
id: build_alt_image
64+
uses: redhat-actions/buildah-build@main
65+
with:
66+
image: ${{ env.IMAGE_NAMESPACE }}
67+
tags: alt-${{ env.IMAGE_TAGS }}
68+
platforms: linux/arm64/v8
69+
containerfiles: |
70+
./Dockerfile-others.gh
71+
72+
- name: Build alt Image armv7
73+
id: build_alt_image
74+
uses: redhat-actions/buildah-build@main
75+
with:
76+
image: ${{ env.IMAGE_NAMESPACE }}
77+
tags: alt-${{ env.IMAGE_TAGS }}
78+
platforms: linux/arm/v7
4979
containerfiles: |
5080
./Dockerfile-others.gh
5181

0 commit comments

Comments
 (0)