Skip to content

Commit 8dd5b0d

Browse files
committed
Disable ARM64 build in CI workflow pending investigation
- Temporarily commented out an ARM64 platform in workflow matrix due to excessive build times. - Added a note explaining the issue and the need for further investigation. - Ensured that the AMD64 build process remains unaffected.
1 parent 68f4e9b commit 8dd5b0d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,11 @@ jobs:
3535
# use a matrix here to speed up the process of build both docker images.
3636
matrix:
3737
environment: [ "production", "development" ]
38-
platform: [ "linux/amd64", "linux/arm64" ]
38+
platform:
39+
- "linux/amd64"
40+
# Disabled this until we research why this takes more than 1 hour to build something that
41+
# take less than 10 minutes on linux/amd64
42+
# - "linux/arm64"
3943
with:
4044
env: ${{ matrix.environment }}
4145
platform: ${{ matrix.platform }}

0 commit comments

Comments
 (0)