Skip to content

Commit 6439769

Browse files
committed
Fix outdated CI
Signed-off-by: Martin Conte Mac Donell <[email protected]>
1 parent c16a9c0 commit 6439769

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.github/workflows/continuous-integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v1
1818
- name: Xcode version
19-
run: sudo xcode-select -s /Applications/Xcode_11.3.app
19+
run: sudo xcode-select -s /Applications/Xcode_13.2.app
2020
- name: Install and Test
2121
run: make install-${{ matrix.action }} && make test-${{ matrix.action }}

Kronos.xcodeproj/project.pbxproj

+8-2
Original file line numberDiff line numberDiff line change
@@ -305,11 +305,13 @@
305305
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
306306
GCC_WARN_UNUSED_FUNCTION = YES;
307307
GCC_WARN_UNUSED_VARIABLE = YES;
308-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
308+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
309+
MACOSX_DEPLOYMENT_TARGET = 11.5;
309310
MTL_ENABLE_DEBUG_INFO = YES;
310311
ONLY_ACTIVE_ARCH = YES;
311312
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
312313
TARGETED_DEVICE_FAMILY = "1,2";
314+
TVOS_DEPLOYMENT_TARGET = 13.0;
313315
VERSIONING_SYSTEM = "apple-generic";
314316
VERSION_INFO_PREFIX = "";
315317
};
@@ -353,11 +355,13 @@
353355
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
354356
GCC_WARN_UNUSED_FUNCTION = YES;
355357
GCC_WARN_UNUSED_VARIABLE = YES;
356-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
358+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
359+
MACOSX_DEPLOYMENT_TARGET = 11.5;
357360
MTL_ENABLE_DEBUG_INFO = NO;
358361
SWIFT_COMPILATION_MODE = wholemodule;
359362
SWIFT_OPTIMIZATION_LEVEL = "-O";
360363
TARGETED_DEVICE_FAMILY = "1,2";
364+
TVOS_DEPLOYMENT_TARGET = 13.0;
361365
VALIDATE_PRODUCT = YES;
362366
VERSIONING_SYSTEM = "apple-generic";
363367
VERSION_INFO_PREFIX = "";
@@ -383,6 +387,7 @@
383387
"@executable_path/Frameworks",
384388
"@loader_path/Frameworks",
385389
);
390+
MACOSX_DEPLOYMENT_TARGET = 11.5;
386391
PRODUCT_BUNDLE_IDENTIFIER = com.Lyft.Kronos;
387392
PRODUCT_NAME = Kronos;
388393
SKIP_INSTALL = YES;
@@ -411,6 +416,7 @@
411416
"@executable_path/Frameworks",
412417
"@loader_path/Frameworks",
413418
);
419+
MACOSX_DEPLOYMENT_TARGET = 11.5;
414420
PRODUCT_BUNDLE_IDENTIFIER = com.Lyft.Kronos;
415421
PRODUCT_NAME = Kronos;
416422
SKIP_INSTALL = YES;

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ test-tvOS:
3939
xcodebuild \
4040
-project Kronos.xcodeproj \
4141
-scheme Kronos \
42-
-destination "platform=tvOS Simulator,name=Apple TV,OS=13.3" \
42+
-destination "platform=tvOS Simulator,name=Apple TV" \
4343
test \
4444
| xcpretty -ct

0 commit comments

Comments
 (0)