Skip to content

Commit

Permalink
Merge pull request #35 from BretFisher/remove-armv7-builds
Browse files Browse the repository at this point in the history
Moving armv7 to optional GHA build
  • Loading branch information
BretFisher authored Jun 19, 2024
2 parents bf240f8 + 1b71ffb commit ab176fe
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 8 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/04-add-metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,8 @@ jobs:
#NEW: (END) ############################################################
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: linux/amd64,linux/arm64,linux/arm/v7
# comma seperated list of what OS and architechtures to build for (in parallel)
# default is linux/amd64 (the OS of the runner) but you can add more
# adding linux/arm64 is recommended for Apple Silicon, Raspberry Pi, AWS Graviton, etc.
# linux/arm/v7 is for 32-bit ARM devices like Raspberry Pi 2/3
platforms: linux/amd64,linux/arm64
6 changes: 5 additions & 1 deletion .github/workflows/05-add-comment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ jobs:
labels: ${{ steps.docker_meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: linux/amd64,linux/arm64,linux/arm/v7
# comma seperated list of what OS and architechtures to build for (in parallel)
# default is linux/amd64 (the OS of the runner) but you can add more
# adding linux/arm64 is recommended for Apple Silicon, Raspberry Pi, AWS Graviton, etc.
# linux/arm/v7 is for 32-bit ARM devices like Raspberry Pi 2/3
platforms: linux/amd64,linux/arm64


#NEW: (START) ##########################################################
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/06-add-cve-scanning.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,8 @@ jobs:
labels: ${{ steps.docker_meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: linux/amd64,linux/arm64,linux/arm/v7
# comma seperated list of what OS and architechtures to build for (in parallel)
# default is linux/amd64 (the OS of the runner) but you can add more
# adding linux/arm64 is recommended for Apple Silicon, Raspberry Pi, AWS Graviton, etc.
# linux/arm/v7 is for 32-bit ARM devices like Raspberry Pi 2/3
platforms: linux/amd64,linux/arm64
6 changes: 5 additions & 1 deletion .github/workflows/07-add-cve-scanning-adv.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,8 @@ jobs:
labels: ${{ steps.docker_meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: linux/amd64,linux/arm64,linux/arm/v7
# comma seperated list of what OS and architechtures to build for (in parallel)
# default is linux/amd64 (the OS of the runner) but you can add more
# adding linux/arm64 is recommended for Apple Silicon, Raspberry Pi, AWS Graviton, etc.
# linux/arm/v7 is for 32-bit ARM devices like Raspberry Pi 2/3
platforms: linux/amd64,linux/arm64
6 changes: 5 additions & 1 deletion .github/workflows/08-add-unit-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,8 @@ jobs:
labels: ${{ steps.docker_meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: linux/amd64,linux/arm64,linux/arm/v7
# comma seperated list of what OS and architechtures to build for (in parallel)
# default is linux/amd64 (the OS of the runner) but you can add more
# adding linux/arm64 is recommended for Apple Silicon, Raspberry Pi, AWS Graviton, etc.
# linux/arm/v7 is for 32-bit ARM devices like Raspberry Pi 2/3
platforms: linux/amd64,linux/arm64
6 changes: 5 additions & 1 deletion .github/workflows/09-add-integration-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,8 @@ jobs:
labels: ${{ steps.docker_meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: linux/amd64,linux/arm64,linux/arm/v7
# comma seperated list of what OS and architechtures to build for (in parallel)
# default is linux/amd64 (the OS of the runner) but you can add more
# adding linux/arm64 is recommended for Apple Silicon, Raspberry Pi, AWS Graviton, etc.
# linux/arm/v7 is for 32-bit ARM devices like Raspberry Pi 2/3
platforms: linux/amd64,linux/arm64
6 changes: 5 additions & 1 deletion .github/workflows/10-add-k8s-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,8 @@ jobs:
labels: ${{ steps.docker_meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: linux/amd64,linux/arm64,linux/arm/v7
# comma seperated list of what OS and architechtures to build for (in parallel)
# default is linux/amd64 (the OS of the runner) but you can add more
# adding linux/arm64 is recommended for Apple Silicon, Raspberry Pi, AWS Graviton, etc.
# linux/arm/v7 is for 32-bit ARM devices like Raspberry Pi 2/3
platforms: linux/amd64,linux/arm64
6 changes: 5 additions & 1 deletion .github/workflows/99-parallelize-jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,11 @@ jobs:
labels: ${{ steps.docker_meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: linux/amd64,linux/arm64,linux/arm/v7
# comma seperated list of what OS and architechtures to build for (in parallel)
# default is linux/amd64 (the OS of the runner) but you can add more
# adding linux/arm64 is recommended for Apple Silicon, Raspberry Pi, AWS Graviton, etc.
# linux/arm/v7 is for 32-bit ARM devices like Raspberry Pi 2/3
platforms: linux/amd64,linux/arm64

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

0 comments on commit ab176fe

Please sign in to comment.