From 11fcc9400a96375cc8db464863aaf99277c9a71f Mon Sep 17 00:00:00 2001 From: Jacob Weinstock Date: Wed, 1 May 2024 12:36:05 -0600 Subject: [PATCH] Run linuxkit builds on the self hosted runners: This is because the previous step created the local container image that is needed. Signed-off-by: Jacob Weinstock --- .github/workflows/build-all-matrix.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-all-matrix.yaml b/.github/workflows/build-all-matrix.yaml index 6eb7b2c2..7da7ab39 100644 --- a/.github/workflows/build-all-matrix.yaml +++ b/.github/workflows/build-all-matrix.yaml @@ -26,6 +26,8 @@ env: # Global environment, passed to all jobs & all steps # GHA runner configuration. See bash/json-matrix.sh for more details. CI_RUNNER_LK_CONTAINERS_ARM64: "ARM64" # Use a self-hosted runner with the "ARM64" tag for the ARM64 builds of LK containers + CI_RUNNER_LK_ARM64: "ARM64" # Use a self-hosted runner with the "ARM64" tag for the ARM64 linuxkit builds + CI_RUNNER_LK_AMD64: "X64" # Use a self-hosted runner with the "X86" tag for the AMD64 linuxkit builds CI_RUNNER_KERNEL_AMD64: "X64" # Use a self-hosted runner with the "X86" tag for the AMD64 kernel builds CI_RUNNER_KERNEL_ARM64: "ARM64" # Use a self-hosted runner with the "ARM64" tag for the ARM64 kernel builds