Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try using official Docker Github actions to build image #9

Merged
merged 2 commits into from
Sep 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 30 additions & 16 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,32 +10,46 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Publish Image
uses: matootie/github-docker@v3.1.0
- uses: actions/checkout@v4

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

- name: Build and push
uses: docker/build-push-action@v4
with:
accessToken: ${{ secrets.GITHUB_TOKEN }}
imageName: manylinux2014_x86_64-hdf5
containerRegistry: true
contextName: ./Dockerfile_x86_64
file: ./Dockerfile_x86_64
platforms: linux/amd64
push: true
tags: ghcr.io/${{ github.repository_owner }}/manylinux2014_x86_64-hdf5

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

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

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

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

- name: Publish Image
uses: matootie/github-docker@v3.1.0
- name: Build and push
uses: docker/build-push-action@v4
with:
accessToken: ${{ secrets.GITHUB_TOKEN }}
imageName: manylinux2014_aarch64-hdf5
containerRegistry: true
contextName: ./Dockerfile_aarch64
file: ./Dockerfile_aarch64
platforms: linux/arm64
push: true
tags: ghcr.io/${{ github.repository_owner }}/manylinux2014_aarch64-hdf5