-
-
Notifications
You must be signed in to change notification settings - Fork 620
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move docker build to separate script for less jank
- Loading branch information
1 parent
2578be2
commit 89e8fe5
Showing
2 changed files
with
47 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#!/usr/bin/env bash | ||
set -ex | ||
|
||
DOCKERHUB_IMAGE_ID=$DOCKERHUB_ACCOUNT/$IMAGE_NAME | ||
|
||
# Change all uppercase to lowercase | ||
DOCKERHUB_IMAGE_ID=$(echo $DOCKERHUB_IMAGE_ID | tr '[A-Z]' '[a-z]') | ||
|
||
image_tags=() | ||
|
||
# Strip git ref prefix from version | ||
VERSION_TAG=$(echo $GITHUB_REF | sed -e 's,.*/\(.*\),\1,') | ||
|
||
# Strip "v" prefix from tag name | ||
if [[ "$GITHUB_REF" == refs/tags/* ]]; then | ||
VERSION_TAG=$(echo $VERSION_TAG | sed -e 's/^v//') | ||
fi | ||
|
||
image_tags+=("--tag" "$DOCKERHUB_IMAGE_ID:$VERSION_TAG") | ||
|
||
# tag as latest on releases | ||
if [[ "$RELEASE" == ON ]]; then | ||
image_tags+=("--tag" "$DOCKERHUB_IMAGE_ID:latest") | ||
fi | ||
|
||
# Only build amd64 on PRs, build all platforms on main. The arm builds | ||
# take far too long. | ||
image_platforms="--platform linux/amd64" | ||
push_image="" | ||
cache_tag="pr-cache" | ||
|
||
# Only push on main | ||
if [[ "$GITHUB_REF" == refs/head/main ]]; then | ||
push_image="--push" | ||
image_platforms="--platform linux/arm/v7,linux/arm64/v8,linux/amd64" | ||
cache_tag="main-cache" | ||
fi | ||
|
||
docker buildx build \ | ||
${push_image} \ | ||
${image_platforms} \ | ||
--cache-from=type=registry,ref=$DOCKERHUB_ACCOUNT/$IMAGE_NAME:$cache_tag \ | ||
--cache-to=type=registry,ref=$DOCKERHUB_ACCOUNT/$IMAGE_NAME:$cache_tag,mode=max \ | ||
"${image_tags[@]}" \ | ||
. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters