Skip to content

Commit

Permalink
Update the builder workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanwweber committed Jul 16, 2024
1 parent 9ccd118 commit 91e9adf
Showing 1 changed file with 27 additions and 16 deletions.
43 changes: 27 additions & 16 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
@@ -1,55 +1,66 @@
name: Build Image from Dockerfile
name: Build Image from Dockerfile
on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

jobs:
build_x86_64_wheels:
build_x86_64:
name: Build image for x86_64
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
file: ./Dockerfile_x86_64
platforms: linux/amd64
push: true
tags: ghcr.io/${{ github.repository_owner }}/manylinux2014_x86_64-hdf5
push: ${{ github.ref_name == 'main' }}
tags: ghcr.io/${{ github.repository_owner }}/manylinux2014_x86_64-hdf5-boost
build-args: |
TARGET_ARCH=x86_64
cache-from: type=gha
cache-to: type=gha,mode=max

build_aarch64_wheels:
build_aarch64:
name: Build image for aarch64
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Setup up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
with:
platforms: arm64

- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
file: ./Dockerfile_aarch64
platforms: linux/arm64
push: true
tags: ghcr.io/${{ github.repository_owner }}/manylinux2014_aarch64-hdf5
push: ${{ github.ref_name == 'main' }}
tags: ghcr.io/${{ github.repository_owner }}/manylinux2014_aarch64-hdf5-boost
build-args: |
TARGET_ARCH=aarch64
cache-from: type=gha
cache-to: type=gha,mode=max

0 comments on commit 91e9adf

Please sign in to comment.