-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from muselab-d2x/jlantz/fix-docker-build
Fix the Docker build by porting to salesforce-cli
- Loading branch information
Showing
2 changed files
with
96 additions
and
0 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
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,91 @@ | ||
name: Build Multi-Arch Docker Images | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- cumulusci-next** | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
target: [no-browser, browser] | ||
platform: [linux/amd64, linux/arm64] | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Set environment variables | ||
run: | | ||
if [ "${{ github.ref_name }}" == "main" ]; then | ||
echo "IMAGE_TAG=latest" >> $GITHUB_ENV | ||
else | ||
IMAGE_TAG=$(echo "${{ github.ref_name }}" | sed -e 's/\//-/g') | ||
echo "IMAGE_TAG=$IMAGE_TAG" >> $GITHUB_ENV | ||
fi | ||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
push: ${{ github.event_name == 'push' }} | ||
tags: | | ||
ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}${{ matrix.target == 'browser' && '-browser' || '' }}${{ matrix.platform == 'linux/arm64' && '-arm64' || '' }} | ||
platforms: ${{ matrix.platform }} | ||
target: ${{ matrix.target }} | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
|
||
merge-manifests: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Set environment variables | ||
run: | | ||
if [ "${{ github.ref_name }}" == "main" ]; then | ||
echo "IMAGE_TAG=latest" >> $GITHUB_ENV | ||
else | ||
echo "IMAGE_TAG=${{ github.ref_name }}" >> $GITHUB_ENV | ||
fi | ||
- name: Create and push multi-arch manifests | ||
run: | | ||
# For no-browser | ||
docker buildx imagetools create -t ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }} \ | ||
ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }} \ | ||
ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}-arm64 | ||
# For browser | ||
docker buildx imagetools create -t ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}-browser \ | ||
ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}-browser \ | ||
ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}-browser-arm64 | ||
- name: Inspect manifests | ||
run: | | ||
echo "Inspecting no-browser manifest:" | ||
docker buildx imagetools inspect ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }} | ||
echo "Inspecting browser manifest:" | ||
docker buildx imagetools inspect ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}-browser |