Skip to content
Draft
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion .github/workflows/android-cpp-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,9 @@ jobs:
needs: build
if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
timeout-minutes: 45

concurrency:
group: browserstack-testing
cancel-in-progress: false
steps:
- uses: actions/checkout@v4

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/android-java-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ jobs:
needs: build
if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
timeout-minutes: 45
concurrency:
group: browserstack-testing
cancel-in-progress: false

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -377,4 +380,4 @@ jobs:
owner: context.repo.owner,
repo: context.repo.repo,
body: body
});
});
3 changes: 3 additions & 0 deletions .github/workflows/android-kotlin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,9 @@ jobs:
needs: build-and-test
if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
timeout-minutes: 45
concurrency:
group: browserstack-testing
cancel-in-progress: false

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/dotnet-maui-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,9 @@ jobs:
needs: [build-android, seed-task-data]
timeout-minutes: 30
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
concurrency:
group: browserstack-testing
cancel-in-progress: false

steps:
- name: Checkout code
Expand Down Expand Up @@ -275,6 +278,9 @@ jobs:
needs: [build-ios, seed-task-data]
timeout-minutes: 60
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
concurrency:
group: browserstack-testing
cancel-in-progress: false

steps:
- name: Checkout code
Expand Down Expand Up @@ -378,4 +384,4 @@ jobs:

echo "" >> $GITHUB_STEP_SUMMARY
echo "[View All Sessions](https://app-automate.browserstack.com/builds?project=Ditto+.NET+MAUI&build=CI+Build+%23${{ github.run_number }})" >> $GITHUB_STEP_SUMMARY
fi
fi
8 changes: 7 additions & 1 deletion .github/workflows/flutter-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,9 @@ jobs:
needs: [build-android, seed-data]
if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
timeout-minutes: 45
concurrency:
group: browserstack-testing
cancel-in-progress: false
outputs:
build_id: ${{ steps.test.outputs.build_id }}

Expand Down Expand Up @@ -677,6 +680,9 @@ jobs:
needs: [build-ios, seed-data]
if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
timeout-minutes: 45
concurrency:
group: browserstack-testing
cancel-in-progress: false

steps:
- name: Checkout code
Expand Down Expand Up @@ -933,4 +939,4 @@ jobs:
echo "" >> $GITHUB_STEP_SUMMARY
echo "### Results:" >> $GITHUB_STEP_SUMMARY
echo "- **Android:** ${{ needs.browserstack-android.result }}" >> $GITHUB_STEP_SUMMARY
echo "- **iOS:** ${{ needs.browserstack-ios.result }}" >> $GITHUB_STEP_SUMMARY
echo "- **iOS:** ${{ needs.browserstack-ios.result }}" >> $GITHUB_STEP_SUMMARY
5 changes: 4 additions & 1 deletion .github/workflows/kotlin-multiplatform-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,9 @@ jobs:
needs: build-android
if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
timeout-minutes: 45
concurrency:
group: browserstack-testing
cancel-in-progress: false

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -577,4 +580,4 @@ jobs:
else
echo "⚠️ Core builds passed but testing had issues. Check testing logs above." >> $GITHUB_STEP_SUMMARY
fi
fi
fi
3 changes: 3 additions & 0 deletions .github/workflows/react-native-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,9 @@ jobs:
runs-on: ubuntu-latest
needs: [build-android, seed-ditto-cloud]
timeout-minutes: 30
concurrency:
group: browserstack-testing
cancel-in-progress: false
outputs:
build_id: ${{ steps.execute-tests.outputs.build_id }}
status: ${{ job.status }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/react-native-expo-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,9 @@ jobs:
runs-on: ubuntu-latest
needs: [build-android, seed-ditto-cloud]
timeout-minutes: 30
concurrency:
group: browserstack-testing
cancel-in-progress: false
outputs:
build_id: ${{ steps.execute-tests.outputs.build_id }}
status: ${{ job.status }}
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/swift-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,9 @@ jobs:
needs: [build-ios]
if: needs.build-ios.outputs.ios-build-success == 'true'
timeout-minutes: 60
concurrency:
group: browserstack-testing
cancel-in-progress: false

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -590,4 +593,4 @@ jobs:
else
echo "⚠️ Core pipeline has issues - check failed jobs above."
exit 1
fi
fi
Loading