Use Github arm runners for docker arm build tests #1691
Workflow file for this run
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
name: Docker Images | |
# This workflow needs permissions to publish images to ghcr.io, | |
# so it does not work for forks. Therefore, we only trigger it | |
# on pushes to aiidateam/aiida-core repo. | |
on: | |
push: | |
branches: | |
- '*' | |
tags: | |
- v* | |
paths-ignore: | |
- '**.md' | |
- '**.txt' | |
- docs/** | |
- tests/** | |
workflow_dispatch: | |
# https://docs.github.com/en/actions/using-jobs/using-concurrency | |
concurrency: | |
# only cancel in-progress jobs or runs for the current workflow - matches against branch & tags | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
FORCE_COLOR: 1 | |
jobs: | |
# We build only amd64 first to catch failures faster. | |
build-amd64: | |
if: ${{ github.repository == 'aiidateam/aiida-core' }} | |
uses: ./.github/workflows/docker-build.yml | |
with: | |
runsOn: ubuntu-22.04 | |
platforms: linux/amd64 | |
test-amd64: | |
needs: build-amd64 | |
uses: ./.github/workflows/docker-test.yml | |
strategy: | |
matrix: | |
target: [aiida-core-base, aiida-core-with-services, aiida-core-dev] | |
fail-fast: false | |
with: | |
runsOn: ubuntu-22.04 | |
images: ${{ needs.build-amd64.outputs.images }} | |
target: ${{ matrix.target }} | |
build: | |
needs: test-amd64 | |
uses: ./.github/workflows/docker-build.yml | |
with: | |
runsOn: ubuntu-22.04 | |
platforms: linux/amd64,linux/arm64 | |
publish-ghcr: | |
needs: [build, test-amd64] | |
uses: ./.github/workflows/docker-publish.yml | |
secrets: inherit | |
with: | |
runsOn: ubuntu-22.04 | |
images: ${{ needs.build.outputs.images }} | |
registry: ghcr.io | |
test-arm64: | |
needs: build | |
uses: ./.github/workflows/docker-test.yml | |
with: | |
runsOn: ubuntu-22.04-arm | |
images: ${{ needs.build.outputs.images }} | |
target: aiida-core-dev | |
publish-dockerhub: | |
if: >- | |
github.repository == 'aiidateam/aiida-core' | |
&& (github.ref_type == 'tag' || github.ref_name == 'main') | |
needs: [build, test-amd64, test-arm64, publish-ghcr] | |
uses: ./.github/workflows/docker-publish.yml | |
secrets: inherit | |
with: | |
runsOn: ubuntu-22.04 | |
images: ${{ needs.build.outputs.images }} | |
registry: docker.io |