Skip to content

Commit e3a3f4b

Browse files
committed
debug: add fail-fast=false and --stacktrace to diagnose CI failures
All three MC version builds fail at different times (~25-30s), suggesting a common configuration-phase failure. With fail-fast disabled and stacktrace enabled, we can see the actual error for each version simultaneously. https://claude.ai/code/session_01PHDS24JTjD32guufn2q2sj
1 parent 9775e8b commit e3a3f4b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ jobs:
55
build:
66
runs-on: ubuntu-24.04
77
strategy:
8+
fail-fast: false
89
matrix:
910
include:
1011
- mc: "1.21"
@@ -26,7 +27,7 @@ jobs:
2627
- name: make gradle wrapper executable
2728
run: chmod +x ./gradlew
2829
- name: build mc${{ matrix.mc }}
29-
run: ./gradlew :${{ matrix.mc }}:build
30+
run: ./gradlew :${{ matrix.mc }}:build --stacktrace
3031
- name: capture build artifacts
3132
uses: actions/upload-artifact@v4
3233
with:

0 commit comments

Comments
 (0)