From 5884b56646ce75d616759cb1d6c2b242b5e64ac9 Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Fri, 3 Feb 2023 04:57:08 -0600 Subject: [PATCH] Disable `Build all images using Makefile` CI job Currently running each image build task as separate CI jobs, so building all images via the "build everything" job doesn't add a whole lot of extra value. I originally intended the `make build` job to catch any image build tasks I forgot to add individually, but provided I pay attention that risk is low and running this CI job just burns up CI build time that is better used for other work. refs GH-824 --- .github/workflows/build-images.yml | 38 +++++++++++++++--------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/build-images.yml b/.github/workflows/build-images.yml index 54674244..56d5cb18 100644 --- a/.github/workflows/build-images.yml +++ b/.github/workflows/build-images.yml @@ -16,25 +16,25 @@ on: types: [opened, synchronize] jobs: - build_all_images_using_makefile: - name: Build all images using Makefile - runs-on: ubuntu-latest - # Default: 360 minutes - timeout-minutes: 20 - - steps: - - name: Print Docker version - run: docker --version - - - name: Check out code into the Go module directory - uses: actions/checkout@v3 - - # bsdmainutils provides "column" which is used by the Makefile - - name: Install Ubuntu packages - run: sudo apt-get update && sudo apt-get install -y --no-install-recommends make gcc bsdmainutils - - - name: Build images using project Makefile - run: make build + # build_all_images_using_makefile: + # name: Build all images using Makefile + # runs-on: ubuntu-latest + # # Default: 360 minutes + # timeout-minutes: 20 + # + # steps: + # - name: Print Docker version + # run: docker --version + # + # - name: Check out code into the Go module directory + # uses: actions/checkout@v3 + # + # # bsdmainutils provides "column" which is used by the Makefile + # - name: Install Ubuntu packages + # run: sudo apt-get update && sudo apt-get install -y --no-install-recommends make gcc bsdmainutils + # + # - name: Build images using project Makefile + # run: make build build_stable_image_using_makefile: name: Build stable image using Makefile