-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
161 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
name: Test E2E (prod) | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 * * * *' | ||
|
||
jobs: | ||
test-cloud-production: | ||
# this job is the same as e2e-production in mobile-dev-inc/monorepo | ||
runs-on: ubuntu-latest | ||
if: github.repository == 'mobile-dev-inc/maestro' | ||
|
||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: zulu | ||
java-version: 8 | ||
|
||
- name: Install Maestro | ||
run: | | ||
curl -Ls --retry 3 --retry-all-errors "https://get.maestro.mobile.dev" | bash | ||
echo "${HOME}/.maestro/bin" >> $GITHUB_PATH | ||
- name: Print Maestro version | ||
run: maestro --version | ||
|
||
- name: Download samples | ||
run: maestro download-samples | ||
|
||
- name: Run iOS test | ||
run: | | ||
maestro cloud \ | ||
--apiKey ${{ secrets.E2E_MOBILE_DEV_API_KEY }} \ | ||
--timeout 180 \ | ||
--fail-on-cancellation \ | ||
--include-tags=advanced | ||
samples/sample.zip samples | ||
- name: Run Android test | ||
run: | | ||
maestro cloud \ | ||
--apiKey ${{ secrets.E2E_MOBILE_DEV_API_KEY }} \ | ||
--fail-on-cancellation \ | ||
--include-tags advanced \ | ||
samples/sample.apk samples | ||
- name: Trigger alert on failure | ||
if: ${{ false }} | ||
# if: failure() | ||
run: | | ||
curl --request POST \ | ||
--url "https://events.pagerduty.com/v2/enqueue" \ | ||
--header 'Content-Type: application/json' \ | ||
--data '{ | ||
"payload": { | ||
"summary": "E2E test failed", | ||
"source": "E2E test", | ||
"severity": "critical" | ||
}, | ||
"routing_key": "${{ secrets.E2E_PAGER_DUTY_INTEGRATION_KEY }}", | ||
"event_action": "trigger", | ||
"links": [ | ||
{ | ||
"href": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}", | ||
"text": "Failed E2E test - Github Action" | ||
} | ||
] | ||
}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.