From 8b3d1d38dd022a2d83ce9f1c22d47fa50d9db602 Mon Sep 17 00:00:00 2001 From: Bettina Heim Date: Fri, 11 Aug 2023 00:22:26 +0200 Subject: [PATCH] Adding ARM builds to the create_cache command --- .github/workflows/create_cache_command.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create_cache_command.yml b/.github/workflows/create_cache_command.yml index 1e88d76a83..d89fbd8b78 100644 --- a/.github/workflows/create_cache_command.yml +++ b/.github/workflows/create_cache_command.yml @@ -50,17 +50,19 @@ jobs: needs: config strategy: matrix: + platform: [amd64, arm64] toolchain: [llvm, clang16, gcc12] fail-fast: false uses: ./.github/workflows/dev_environment.yml with: + platforms: linux/${{ matrix.platform }} dockerfile: build/devdeps.Dockerfile toolchain: ${{ matrix.toolchain }} create_local_cache: true registry_cache_from: ${{ needs.config.outputs.target_branch }} pull_request_number: ${{ needs.config.outputs.pull_request_number }} # needed only for the cloudposse GitHub action - matrix_key: ${{ matrix.toolchain }} + matrix_key: ${{ matrix.platform }}-${{ matrix.toolchain }} wheeldeps_caches: name: Cache wheel dependencies @@ -107,4 +109,4 @@ jobs: || echo "Cache $key not found" done env: - GH_TOKEN: ${{ github.token }} \ No newline at end of file + GH_TOKEN: ${{ github.token }}