Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,15 @@ jobs:
- run: chmod +x ./gradlew

- name: Build
run: ./gradlew assembleDebug --stacktrace
run: ./gradlew assembleDebug --stacktrace 2>&1 | tee build-output.log || (tail -200 build-output.log > build-error.log && exit 1)

- name: Upload build log on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: build-error-log
path: build-error.log
if-no-files-found: ignore

- name: Build samples
run: |
Expand Down
Loading