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 83d70b9 commit 2f0de73
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,9 @@ jobs:
run: |
command -v ffmpeg || brew install ffmpeg
mkdir -p ${{ env.ARTIFACTS_PATH }}
ffmpeg -nostdin -f avfoundation -i 1 ${{ env.ARTIFACTS_PATH }}out.mkv > ${{ env.ARTIFACTS_PATH }}ffmpeg.log 2>&1 &
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 &
# outputs variables: api-level, label, target
- name: Configure Android Settings
Expand Down
8 changes: 0 additions & 8 deletions scripts/smoke-test-ios.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -126,16 +126,8 @@ function Test
Write-Host "::endgroup::"

$devicesRan = 0
$skippedItems = 0
ForEach ($device in $deviceList)
{
If ($skippedItems -lt $skipCount)
{
# Write-Host "Skipping Simulator $($device.Name) UUID $($device.UUID)" -ForegroundColor Green
$device.TestSkipped = $true
$skippedItems++
continue
}
If ($devicesRan -ge $DevicesToRun)
{
# Write-Host "Skipping Simulator $($device.Name) UUID $($device.UUID)" -ForegroundColor Green
Expand Down

0 comments on commit 2f0de73

Please sign in to comment.