From ee127f4baeaeee116b81fefd850e3b84e48cbae1 Mon Sep 17 00:00:00 2001 From: Kevin Renskers Date: Tue, 4 Oct 2022 15:51:18 +0200 Subject: [PATCH] fix: Fix VLC integration test (#2251) Use iOS 16.0 --- .github/workflows/integration-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 54463668110..41341944001 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -180,4 +180,4 @@ jobs: - name: Run UI Tests # Run the tests twice in case they are flaky. - run: for i in {1..2} ; do set -o pipefail && env NSUnbufferedIO=YES xcodebuild -workspace "VLC.xcworkspace" -scheme "VLC-iOS-UITests" -destination "OS=15.5,name=iPhone 13 Pro" test | xcpretty && break ; done + run: for i in {1..2} ; do set -o pipefail && env NSUnbufferedIO=YES xcodebuild -workspace "VLC.xcworkspace" -scheme "VLC-iOS-UITests" -destination "platform=iOS Simulator,OS=16.0,name=iPhone 13 Pro" test | xcpretty && break ; done