Skip to content

Commit

Permalink
[wip] updating deployment targets
Browse files Browse the repository at this point in the history
  • Loading branch information
rcancro committed May 6, 2024
1 parent afe4e35 commit 55e5414
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: macOS-latest
strategy:
matrix:
platform: ['iOS Simulator,name=iPhone 8']
platform: ['iOS Simulator,name=iPhone 15']
steps:
- uses: actions/checkout@v2
- name: Analyze
Expand All @@ -26,7 +26,7 @@ jobs:
runs-on: macOS-latest
strategy:
matrix:
platform: ['iOS Simulator,name=iPhone 8']
platform: ['iOS Simulator,name=iPhone 15']
steps:
- uses: actions/checkout@v2
- name: Test
Expand All @@ -42,15 +42,15 @@ jobs:
name: Carthage
runs-on: macOS-latest
env:
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app/Contents/Developer
steps:
- uses: actions/checkout@v2
- name: Carthage
run: make carthage
swift-package-manager:
runs-on: macos-latest
env:
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app/Contents/Developer
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -59,7 +59,7 @@ jobs:
example-spm-xcode:
runs-on: macos-latest
env:
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app/Contents/Developer
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions PINRemoteImage.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Pod::Spec.new do |s|
s.prefix_header_file = false
# s.social_media_url = 'https://twitter.com/garrettmoon'

ios_deployment = "8.0"
tvos_deployment = "9.0"
ios_deployment = "13.0"
tvos_deployment = "13.0"
osx_deployment = "10.11"
s.ios.deployment_target = ios_deployment
s.tvos.deployment_target = tvos_deployment
Expand Down
4 changes: 2 additions & 2 deletions PINRemoteImage.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1197,7 +1197,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = "Carthage/Checkouts/libwebp/**";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
OTHER_CFLAGS = "";
Expand Down Expand Up @@ -1255,7 +1255,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = "Carthage/Checkouts/libwebp/**";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
MTL_ENABLE_DEBUG_INFO = NO;
OTHER_CFLAGS = "";
PRODUCT_NAME = PINRemoteImage;
Expand Down

0 comments on commit 55e5414

Please sign in to comment.