Skip to content

Commit

Permalink
ci: more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vaind committed Oct 28, 2022
1 parent 2f0de73 commit 3e6f292
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -433,11 +433,12 @@ jobs:
- name: Record test session
shell: bash
run: |
set -x
command -v ffmpeg || brew install ffmpeg
mkdir -p ${{ env.ARTIFACTS_PATH }}
ffmpeg -f avfoundation -list_devices true -i ""
ffmpeg -codecs
ffmpeg -nostdin -f avfoundation -i 1 -video_size 720x480 -framerate 5 ${{ env.ARTIFACTS_PATH }}out.mkv > ${{ env.ARTIFACTS_PATH }}ffmpeg.log 2>&1 &
ffmpeg -nostdin -f avfoundation -i 0 -video_size 720x480 -framerate 5 -an ${{ env.ARTIFACTS_PATH }}out.mkv > ${{ env.ARTIFACTS_PATH }}ffmpeg.log 2>&1 &
# outputs variables: api-level, label, target
- name: Configure Android Settings
Expand Down Expand Up @@ -468,7 +469,7 @@ jobs:
- name: Android API ${{ steps.config.outputs.label }} emulator setup + Smoke test
uses: reactivecircus/android-emulator-runner@76c2bf6f95ed6458fd659a1bdb680a0f8df232dc
id: smoke-test
timeout-minutes: 15
timeout-minutes: 30
continue-on-error: true
with:
api-level: ${{ steps.config.outputs.api-level }}
Expand All @@ -492,7 +493,7 @@ jobs:
- name: Android API ${{ steps.config.outputs.label }} emulator setup + Smoke test (Retry)
if: ${{ steps.smoke-test.outputs.status != 'success' }}
uses: reactivecircus/android-emulator-runner@76c2bf6f95ed6458fd659a1bdb680a0f8df232dc
timeout-minutes: 15
timeout-minutes: 30
with:
api-level: ${{ steps.config.outputs.api-level }}
target: ${{ steps.config.outputs.target }}
Expand Down
2 changes: 1 addition & 1 deletion scripts/smoke-test-ios.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ function Test

if ("$SuccessString" -eq "")
{
$SuccessString = "${$Name.ToUpper()} TEST: PASS"
$SuccessString = "$($Name.ToUpper()) TEST: PASS"
}

Write-Host -NoNewline "'$Name' test STATUS: "
Expand Down

0 comments on commit 3e6f292

Please sign in to comment.