From 03a3554e2e02da60bd0008195c4c0fe52ebb329a Mon Sep 17 00:00:00 2001 From: Green Baneling Date: Mon, 14 Oct 2024 10:21:23 +0200 Subject: [PATCH] Do not require build of docker images to pass CI (#2342) Do not require the build of docker images to pass CI. It seems we have some problems with the cache, and right now, CI doesn't use the cache for the docker build process. Until @mchristopher fixes that, I disable it as a requirement to pass CI. --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fabb93ea4fd..943f36c810d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -283,7 +283,6 @@ jobs: needs: - cargo-verifications - publish-crates-check - - build-docker-images - cargo-test-kms runs-on: ubuntu-latest steps: @@ -342,8 +341,8 @@ jobs: matrix: arch: [ # build on native runners instead of using emulation - {platform: linux/amd64, runner: buildjet-8vcpu-ubuntu-2204}, - {platform: linux/arm64, runner: buildjet-16vcpu-ubuntu-2204-arm} + { platform: linux/amd64, runner: buildjet-8vcpu-ubuntu-2204 }, + { platform: linux/arm64, runner: buildjet-16vcpu-ubuntu-2204-arm } ] runs-on: ${{ matrix.arch.runner }} permissions: