From 29c415d71435f5e3081f80eea7d01fda5622401f Mon Sep 17 00:00:00 2001 From: Christoph Junghans Date: Tue, 18 Feb 2025 12:54:34 -0700 Subject: [PATCH] CI: add arm64 rawhide container. --- .github/workflows/continuous-integration-workflow.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 0a40af0..8b15783 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -20,7 +20,8 @@ jobs: config: - {dockerfile: 'fedora', tag: 'latest-amd64'} - {dockerfile: 'fedora', tag: 'latest-arm64', arm: 'true'} - - {dockerfile: 'fedora', tag: 'rawhide', build_args: 'TAG=rawhide', continue-on-error: 'true'} + - {dockerfile: 'fedora', tag: 'rawhide-amd64', build_args: 'TAG=rawhide', continue-on-error: 'true'} + - {dockerfile: 'fedora', tag: 'rawhide-arm64', build_args: 'TAG=rawhide', continue-on-error: 'true'} - {dockerfile: 'ubuntu', tag: 'latest-amd64'} - {dockerfile: 'ubuntu', tag: 'latest-arm64', arm: 'true'} - {dockerfile: 'ubuntu', tag: 'rolling', build_args: 'TAG=rolling'} @@ -97,7 +98,9 @@ jobs: matrix: config: - {dockerfile: 'fedora', tag: 'latest'} + - {dockerfile: 'fedora', tag: 'rawhide', continue-on-error: 'true'} - {dockerfile: 'ubuntu', tag: 'latest'} + continue-on-error: ${{ matrix.config.continue-on-error == 'true' }} env: docker-tag: ghcr.io/kokkos/ci-containers/${{ matrix.config.dockerfile }}:${{ matrix.config.tag }} steps: