From 7208741d4fb0bad9ccd4469dee3956f17b12e1c8 Mon Sep 17 00:00:00 2001 From: hjpotter92 Date: Wed, 22 May 2024 21:20:57 +0530 Subject: [PATCH] workflows: Disable builds for targets that aren't generally needed (#949) --- .github/workflows/build.yaml | 5 ++--- .github/workflows/catalyst.yaml | 19 ------------------- 2 files changed, 2 insertions(+), 22 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ec937c12e..a5c52c623 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -26,11 +26,9 @@ jobs: fail-fast: false matrix: architecture: - - arm64 - amd64 platform: - name: linux - - name: darwin steps: - name: Check out code @@ -129,7 +127,8 @@ jobs: uses: livepeer/branch-manifest-action@latest with: project-name: ${{ github.event.repository.name }} - platform: linux, darwin + platform: linux + architecture: amd64 - name: Authenticate to Google Cloud id: auth diff --git a/.github/workflows/catalyst.yaml b/.github/workflows/catalyst.yaml index c7c447c61..84c60d73f 100644 --- a/.github/workflows/catalyst.yaml +++ b/.github/workflows/catalyst.yaml @@ -23,34 +23,15 @@ jobs: fail-fast: false matrix: targets: - # example: livepeer/catalyst:latest - # primary multi-platform stripped build - - platforms: linux/amd64, linux/arm64 - target: stripped - target_suffix: "" - debug_suffix: "" - # example: livepeer/catalyst:latest-amd64 - # primarily useful so we can deploy the amd64 version prior to the slow, emulated arm64 build to succeed - platforms: linux/amd64 target: stripped target_suffix: "-amd64" debug_suffix: "" - # example: livepeer/catalyst:latest-arm64 - - platforms: linux/arm64 - target: stripped - target_suffix: "-arm64" - debug_suffix: "" - # example: livepeer/catalyst:latest-amd64-debug # unstripped binaries for use with gdb coredump debugging - platforms: linux/amd64 target: full target_suffix: "-amd64" debug_suffix: "-debug" - # example: livepeer/catalyst:latest-arm64-debug - - platforms: linux/arm64 - target: full - target_suffix: "-arm64" - debug_suffix: "-debug" docker_images: - target: catalyst label: livepeer/catalyst