Skip to content

Commit ab176fe

Browse files
authored
Merge pull request #35 from BretFisher/remove-armv7-builds
Moving armv7 to optional GHA build
2 parents bf240f8 + 1b71ffb commit ab176fe

File tree

8 files changed

+40
-8
lines changed

8 files changed

+40
-8
lines changed

.github/workflows/04-add-metadata.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,8 @@ jobs:
5252
#NEW: (END) ############################################################
5353
cache-from: type=gha
5454
cache-to: type=gha,mode=max
55-
platforms: linux/amd64,linux/arm64,linux/arm/v7
55+
# comma seperated list of what OS and architechtures to build for (in parallel)
56+
# default is linux/amd64 (the OS of the runner) but you can add more
57+
# adding linux/arm64 is recommended for Apple Silicon, Raspberry Pi, AWS Graviton, etc.
58+
# linux/arm/v7 is for 32-bit ARM devices like Raspberry Pi 2/3
59+
platforms: linux/amd64,linux/arm64

.github/workflows/05-add-comment.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,11 @@ jobs:
5353
labels: ${{ steps.docker_meta.outputs.labels }}
5454
cache-from: type=gha
5555
cache-to: type=gha,mode=max
56-
platforms: linux/amd64,linux/arm64,linux/arm/v7
56+
# comma seperated list of what OS and architechtures to build for (in parallel)
57+
# default is linux/amd64 (the OS of the runner) but you can add more
58+
# adding linux/arm64 is recommended for Apple Silicon, Raspberry Pi, AWS Graviton, etc.
59+
# linux/arm/v7 is for 32-bit ARM devices like Raspberry Pi 2/3
60+
platforms: linux/amd64,linux/arm64
5761

5862

5963
#NEW: (START) ##########################################################

.github/workflows/06-add-cve-scanning.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,8 @@ jobs:
6969
labels: ${{ steps.docker_meta.outputs.labels }}
7070
cache-from: type=gha
7171
cache-to: type=gha,mode=max
72-
platforms: linux/amd64,linux/arm64,linux/arm/v7
72+
# comma seperated list of what OS and architechtures to build for (in parallel)
73+
# default is linux/amd64 (the OS of the runner) but you can add more
74+
# adding linux/arm64 is recommended for Apple Silicon, Raspberry Pi, AWS Graviton, etc.
75+
# linux/arm/v7 is for 32-bit ARM devices like Raspberry Pi 2/3
76+
platforms: linux/amd64,linux/arm64

.github/workflows/07-add-cve-scanning-adv.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,8 @@ jobs:
9797
labels: ${{ steps.docker_meta.outputs.labels }}
9898
cache-from: type=gha
9999
cache-to: type=gha,mode=max
100-
platforms: linux/amd64,linux/arm64,linux/arm/v7
100+
# comma seperated list of what OS and architechtures to build for (in parallel)
101+
# default is linux/amd64 (the OS of the runner) but you can add more
102+
# adding linux/arm64 is recommended for Apple Silicon, Raspberry Pi, AWS Graviton, etc.
103+
# linux/arm/v7 is for 32-bit ARM devices like Raspberry Pi 2/3
104+
platforms: linux/amd64,linux/arm64

.github/workflows/08-add-unit-test.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,8 @@ jobs:
6767
labels: ${{ steps.docker_meta.outputs.labels }}
6868
cache-from: type=gha
6969
cache-to: type=gha,mode=max
70-
platforms: linux/amd64,linux/arm64,linux/arm/v7
70+
# comma seperated list of what OS and architechtures to build for (in parallel)
71+
# default is linux/amd64 (the OS of the runner) but you can add more
72+
# adding linux/arm64 is recommended for Apple Silicon, Raspberry Pi, AWS Graviton, etc.
73+
# linux/arm/v7 is for 32-bit ARM devices like Raspberry Pi 2/3
74+
platforms: linux/amd64,linux/arm64

.github/workflows/09-add-integration-test.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,8 @@ jobs:
7474
labels: ${{ steps.docker_meta.outputs.labels }}
7575
cache-from: type=gha
7676
cache-to: type=gha,mode=max
77-
platforms: linux/amd64,linux/arm64,linux/arm/v7
77+
# comma seperated list of what OS and architechtures to build for (in parallel)
78+
# default is linux/amd64 (the OS of the runner) but you can add more
79+
# adding linux/arm64 is recommended for Apple Silicon, Raspberry Pi, AWS Graviton, etc.
80+
# linux/arm/v7 is for 32-bit ARM devices like Raspberry Pi 2/3
81+
platforms: linux/amd64,linux/arm64

.github/workflows/10-add-k8s-test.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,8 @@ jobs:
9393
labels: ${{ steps.docker_meta.outputs.labels }}
9494
cache-from: type=gha
9595
cache-to: type=gha,mode=max
96-
platforms: linux/amd64,linux/arm64,linux/arm/v7
96+
# comma seperated list of what OS and architechtures to build for (in parallel)
97+
# default is linux/amd64 (the OS of the runner) but you can add more
98+
# adding linux/arm64 is recommended for Apple Silicon, Raspberry Pi, AWS Graviton, etc.
99+
# linux/arm/v7 is for 32-bit ARM devices like Raspberry Pi 2/3
100+
platforms: linux/amd64,linux/arm64

.github/workflows/99-parallelize-jobs.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,11 @@ jobs:
255255
labels: ${{ steps.docker_meta.outputs.labels }}
256256
cache-from: type=gha
257257
cache-to: type=gha,mode=max
258-
platforms: linux/amd64,linux/arm64,linux/arm/v7
258+
# comma seperated list of what OS and architechtures to build for (in parallel)
259+
# default is linux/amd64 (the OS of the runner) but you can add more
260+
# adding linux/arm64 is recommended for Apple Silicon, Raspberry Pi, AWS Graviton, etc.
261+
# linux/arm/v7 is for 32-bit ARM devices like Raspberry Pi 2/3
262+
platforms: linux/amd64,linux/arm64
259263

260264
# If PR, put image tags in the PR comments
261265
# from https://github.com/marketplace/actions/create-or-update-comment

0 commit comments

Comments
 (0)