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
6 changes: 4 additions & 2 deletions .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,16 @@ jobs:
with:
dotnet-version: '9.x'

- name: Run jenkins build
- name: Run android build
id: android-build
continue-on-error: true
run: |
make jenkins PREPARE_CI=1 PREPARE_AUTOPROVISION=1 CONFIGURATION=Debug
timeout-minutes: 60

- name: Upload logs
uses: actions/upload-artifact@v4
if: failure()
if: steps.android-build.outcome == 'failure'
with:
name: copilot-artifacts
path: |
Expand Down