Skip to content

Commit

Permalink
workflows: Disable builds for targets that aren't generally needed (#949
Browse files Browse the repository at this point in the history
)
  • Loading branch information
hjpotter92 authored May 22, 2024
1 parent 22be38a commit 7208741
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 22 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,9 @@ jobs:
fail-fast: false
matrix:
architecture:
- arm64
- amd64
platform:
- name: linux
- name: darwin

steps:
- name: Check out code
Expand Down Expand Up @@ -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
Expand Down
19 changes: 0 additions & 19 deletions .github/workflows/catalyst.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7208741

Please sign in to comment.