Skip to content

Commit

Permalink
feat(build): adding multi-platform support
Browse files Browse the repository at this point in the history
  • Loading branch information
jgeluk committed Aug 27, 2024
1 parent 9d88f50 commit e538021
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 12 deletions.
27 changes: 21 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,31 @@ jobs:
permissions:
packages: write
steps:

- name: Checkout ekgf/gloud-terraform
-
name: Checkout ekgf/gloud-terraform
uses: actions/checkout@v4

- name: set-env
-
name: set-env
run: |
echo "FQ_IMAGE_NAME=${{ vars.FQ_IMAGE_NAME }}" >> $GITHUB_ENV
echo "VERSION=$(< ./VERSION)" >> $GITHUB_ENV
- name: Build and push Docker images
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
platforms: linux/amd64,linux/arm64
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push Docker images
uses: docker/build-push-action@v3
with:
#
Expand Down
17 changes: 11 additions & 6 deletions localbuild.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
#!/usr/bin/env bash
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd -P)"
_IMAGE_NAME="ghcr.io/ekgf/gcloud-terraform"
_IMAGE_VERSION="latest"
_MANUALLY_INCREMENTED_IMAGE_VERSION="0.0.7"
_IMAGE_NAME="$(< IMAGE_NAME)"
_IMAGE_VERSION="$(< VERSION)"

cd "${SCRIPT_DIR}" || exit 1

docker build . \
# Create a parallel multi-platform builder
docker buildx create --name mybuilder --use
# Make "buildx" the default
docker buildx install
# Build for multiple platforms
docker build \
--iidfile=.image-id \
"--tag=${_IMAGE_NAME}:${_IMAGE_VERSION}" \
"--tag=${_IMAGE_NAME}:${_MANUALLY_INCREMENTED_IMAGE_VERSION}"
--platform linux/amd64,linux/arm64 \
"--tag=${_IMAGE_NAME}:latest" \
"--tag=${_IMAGE_NAME}:${_IMAGE_VERSION}" .
exit $?

0 comments on commit e538021

Please sign in to comment.