Skip to content

Commit

Permalink
Fix outdated CI
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Conte Mac Donell <[email protected]>
  • Loading branch information
Reflejo committed Aug 15, 2022
1 parent c16a9c0 commit 6439769
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Xcode version
run: sudo xcode-select -s /Applications/Xcode_11.3.app
run: sudo xcode-select -s /Applications/Xcode_13.2.app
- name: Install and Test
run: make install-${{ matrix.action }} && make test-${{ matrix.action }}
10 changes: 8 additions & 2 deletions Kronos.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -305,11 +305,13 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
MACOSX_DEPLOYMENT_TARGET = 11.5;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
TARGETED_DEVICE_FAMILY = "1,2";
TVOS_DEPLOYMENT_TARGET = 13.0;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
Expand Down Expand Up @@ -353,11 +355,13 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
MACOSX_DEPLOYMENT_TARGET = 11.5;
MTL_ENABLE_DEBUG_INFO = NO;
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_OPTIMIZATION_LEVEL = "-O";
TARGETED_DEVICE_FAMILY = "1,2";
TVOS_DEPLOYMENT_TARGET = 13.0;
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
Expand All @@ -383,6 +387,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 11.5;
PRODUCT_BUNDLE_IDENTIFIER = com.Lyft.Kronos;
PRODUCT_NAME = Kronos;
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -411,6 +416,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 11.5;
PRODUCT_BUNDLE_IDENTIFIER = com.Lyft.Kronos;
PRODUCT_NAME = Kronos;
SKIP_INSTALL = YES;
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ test-tvOS:
xcodebuild \
-project Kronos.xcodeproj \
-scheme Kronos \
-destination "platform=tvOS Simulator,name=Apple TV,OS=13.3" \
-destination "platform=tvOS Simulator,name=Apple TV" \
test \
| xcpretty -ct

0 comments on commit 6439769

Please sign in to comment.