Skip to content

Commit 3a7226f

Browse files
authored
fix(ci): disable arm64 build (#913)
The arm-hooray runner seems to be missing causing the arm64 workflow to time out. Hyperion does not have architecture-specific code, so the arm64 build is not necessary because the program will likely compile on arm64 if compilation succeeds on other architectures.
1 parent 4f2bafe commit 3a7226f

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,11 @@ jobs:
99
build:
1010
strategy:
1111
matrix:
12-
arch: [amd64, arm64]
12+
arch: [amd64]
1313
include:
1414
- arch: amd64
1515
platform: linux/amd64
1616
runner: ubuntu-latest
17-
- arch: arm64
18-
platform: linux/arm64
19-
runner: arm-hooray
2017
runs-on: ${{ matrix.runner }}
2118
permissions:
2219
contents: read
@@ -93,7 +90,7 @@ jobs:
9390
uses: docker/build-push-action@v5
9491
with:
9592
push: true
96-
platforms: linux/amd64,linux/arm64
93+
platforms: linux/amd64
9794
tags: |
9895
ghcr.io/${{ github.repository }}/hyperion-proxy:latest
9996
ghcr.io/${{ github.repository }}/hyperion-proxy:${{ github.sha }}
@@ -103,7 +100,7 @@ jobs:
103100
uses: docker/build-push-action@v5
104101
with:
105102
push: true
106-
platforms: linux/amd64,linux/arm64
103+
platforms: linux/amd64
107104
tags: |
108105
ghcr.io/${{ github.repository }}/tag:latest
109106
ghcr.io/${{ github.repository }}/tag:${{ github.sha }}

0 commit comments

Comments
 (0)