Skip to content

Commit

Permalink
Merge branch 'development' into gradle-update
Browse files Browse the repository at this point in the history
  • Loading branch information
linsang21 authored Sep 23, 2024
2 parents 6b80dbd + 4750a80 commit 9cb8ee0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/daily-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down Expand Up @@ -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]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1695,6 +1695,9 @@ class MeetingFragment : Fragment(),
object {}.javaClass.enclosingMethod?.name,
"${sessionStatus.statusCode}"
)
if (sessionStatus.statusCode == MeetingSessionStatusCode.VideoServiceFailed) {
onAudioSessionStopped(sessionStatus)
}
}

override fun onRemoteVideoSourceAvailable(sources: List<RemoteVideoSource>) {
Expand Down

0 comments on commit 9cb8ee0

Please sign in to comment.