Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configure timeout-minutes for GH actions which run Maestro tests #5554

Merged
Merged
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
3 changes: 2 additions & 1 deletion .github/workflows/ads-end-to-end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,12 @@ jobs:

- name: ADS Preview Flows
uses: mobile-dev-inc/action-maestro-cloud@v1.9.7
timeout-minutes: 120
with:
api-key: ${{ secrets.ROBIN_API_KEY }}
project-id: ${{ vars.ROBIN_ANDROID_PROJECT_ID }}
name: androidDesignSystem_${{ github.sha }}
timeout: 120
timeout: ${{ vars.ROBIN_TIMEOUT_MINUTES }}
app-file: apk/release.apk
android-api-level: 30
workspace: .maestro
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/custom-tabs-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,12 @@ jobs:

- name: Custom Tabs Flows
uses: mobile-dev-inc/action-maestro-cloud@v1.9.7
timeout-minutes: 120
with:
api-key: ${{ secrets.ROBIN_API_KEY }}
project-id: ${{ vars.ROBIN_ANDROID_PROJECT_ID }}
name: customTabs_${{ github.sha }}
timeout: 120
timeout: ${{ vars.ROBIN_TIMEOUT_MINUTES }}
app-file: apk/release.apk
android-api-level: 30
workspace: .maestro
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/e2e-nightly-autofill.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,12 @@ jobs:

- name: Autofill Critical Path E2E Flows
uses: mobile-dev-inc/action-maestro-cloud@v1.9.7
timeout-minutes: 120
with:
api-key: ${{ secrets.ROBIN_API_KEY }}
project-id: ${{ vars.ROBIN_ANDROID_PROJECT_ID }}
name: autofill_${{ github.sha }}
timeout: 120
timeout: ${{ vars.ROBIN_TIMEOUT_MINUTES }}
app-file: apk/release.apk
android-api-level: 30
workspace: .maestro
Expand Down
15 changes: 10 additions & 5 deletions .github/workflows/end-to-end-robintest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,12 @@ jobs:

- name: Ad click detection flows
uses: mobile-dev-inc/action-maestro-cloud@v1.9.7
timeout-minutes: 120
with:
api-key: ${{ secrets.ROBIN_API_KEY }}
project-id: ${{ vars.ROBIN_ANDROID_PROJECT_ID }}
name: adClickTest_${{ github.sha }}
timeout: 120
timeout: ${{ vars.ROBIN_TIMEOUT_MINUTES }}
app-file: apk/release.apk
android-api-level: 30
workspace: .maestro
Expand All @@ -69,11 +70,12 @@ jobs:
- name: Privacy Tests
if: always()
uses: mobile-dev-inc/action-maestro-cloud@v1.9.7
timeout-minutes: 120
with:
api-key: ${{ secrets.ROBIN_API_KEY }}
project-id: ${{ vars.ROBIN_ANDROID_PROJECT_ID }}
name: privacyTest_${{ github.sha }}
timeout: 120
timeout: ${{ vars.ROBIN_TIMEOUT_MINUTES }}
app-file: apk/release.apk
android-api-level: 30
workspace: .maestro
Expand All @@ -82,11 +84,12 @@ jobs:
- name: Security Tests
if: always()
uses: mobile-dev-inc/action-maestro-cloud@v1.9.7
timeout-minutes: 120
with:
api-key: ${{ secrets.ROBIN_API_KEY }}
project-id: ${{ vars.ROBIN_ANDROID_PROJECT_ID }}
name: securityTest_${{ github.sha }}
timeout: 120
timeout: ${{ vars.ROBIN_TIMEOUT_MINUTES }}
app-file: apk/release.apk
android-api-level: 30
workspace: .maestro
Expand All @@ -95,11 +98,12 @@ jobs:
- name: Release Tests
if: always()
uses: mobile-dev-inc/action-maestro-cloud@v1.9.7
timeout-minutes: 120
with:
api-key: ${{ secrets.ROBIN_API_KEY }}
project-id: ${{ vars.ROBIN_ANDROID_PROJECT_ID }}
name: releaseTest_${{ github.sha }}
timeout: 120
timeout: ${{ vars.ROBIN_TIMEOUT_MINUTES }}
app-file: apk/release.apk
android-api-level: 30
workspace: .maestro
Expand All @@ -108,11 +112,12 @@ jobs:
- name: Notifications permissions Android 13+
if: always()
uses: mobile-dev-inc/action-maestro-cloud@v1.9.7
timeout-minutes: 120
with:
api-key: ${{ secrets.ROBIN_API_KEY }}
project-id: ${{ vars.ROBIN_ANDROID_PROJECT_ID }}
name: notificationPermissionTest_${{ github.sha }}
timeout: 120
timeout: ${{ vars.ROBIN_TIMEOUT_MINUTES }}
app-file: apk/release.apk
android-api-level: 33
workspace: .maestro/notifications_permissions_android13_plus
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/privacy-dashboard-end-to-end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,12 @@ jobs:

- name: Ad click detection flows
uses: mobile-dev-inc/action-maestro-cloud@v1.9.7
timeout-minutes: 120
with:
api-key: ${{ secrets.ROBIN_API_KEY }}
project-id: ${{ vars.ROBIN_ANDROID_PROJECT_ID }}
name: privacyDashboard_adClickTest_${{ github.sha }}
timeout: 120
timeout: ${{ vars.ROBIN_TIMEOUT_MINUTES }}
app-file: apk/release.apk
android-api-level: 30
workspace: .maestro
Expand All @@ -72,11 +73,12 @@ jobs:
- name: Privacy Tests
if: always()
uses: mobile-dev-inc/action-maestro-cloud@v1.9.7
timeout-minutes: 120
with:
api-key: ${{ secrets.ROBIN_API_KEY }}
project-id: ${{ vars.ROBIN_ANDROID_PROJECT_ID }}
name: privacyDashboard_privacyTest_${{ github.sha }}
timeout: 120
timeout: ${{ vars.ROBIN_TIMEOUT_MINUTES }}
app-file: apk/release.apk
workspace: .maestro
include-tags: privacyTest
3 changes: 2 additions & 1 deletion .github/workflows/release_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,12 @@ jobs:

- name: Release tests flows
uses: mobile-dev-inc/action-maestro-cloud@v1.9.7
timeout-minutes: 120
with:
api-key: ${{ secrets.ROBIN_API_KEY }}
project-id: ${{ vars.ROBIN_ANDROID_PROJECT_ID }}
name: releaseTest_${{ github.sha }}
timeout: 120
timeout: ${{ vars.ROBIN_TIMEOUT_MINUTES }}
app-file: apk/release.apk
android-api-level: 30
workspace: .maestro
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/sync-critical-path.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,12 @@ jobs:

- name: Sync Flows
uses: mobile-dev-inc/action-maestro-cloud@v1.9.7
timeout-minutes: 120
with:
api-key: ${{ secrets.ROBIN_API_KEY }}
project-id: ${{ vars.ROBIN_ANDROID_PROJECT_ID }}
name: sync_${{ github.sha }}
timeout: 120
timeout: ${{ vars.ROBIN_TIMEOUT_MINUTES }}
app-file: apk/release.apk
android-api-level: 30
workspace: .maestro
Expand Down
Loading