-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into gradle-update
- Loading branch information
Showing
2 changed files
with
10 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ name: Daily Test | |
on: | ||
schedule: | ||
# More information on cron https://crontab.guru/ | ||
# GitHub actions is using UTC time. Scheduling action at 5 am PST | ||
- cron: '0 13 * * *' | ||
# GitHub actions is using UTC time. Scheduling action at 4 am PST | ||
- cron: '0 12 * * *' | ||
|
||
workflow_dispatch: | ||
|
||
|
@@ -37,13 +37,16 @@ jobs: | |
with: | ||
node-version: 15.x | ||
|
||
- name: Run tests | ||
- name: Run tests against the latest 2 Android versions | ||
id: tests | ||
run: | | ||
id=$(curl -F '[email protected]' -F name=amazon-chime-sdk-app.apk -u "${{ secrets.SAUCE_USERNAME }}:${{ secrets.SAUCE_ACCESS_KEY }}" 'https://api.us-west-1.saucelabs.com/v1/storage/upload' |jq '.item.id') | ||
npm install | ||
npm run build | ||
npm run cma -- --app-url "sample.apk" --log-level error --tag "@common" --app-id "${id}" --platform-version "9" | ||
for os in 12 13; do | ||
npm run cma -- --app-url "sample.apk" --log-level error --tag "@common" --app-id "${id}" --retry --platform-version $os | ||
sleep 10 | ||
done | ||
- name: Send Notification | ||
uses: slackapi/[email protected] | ||
|
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