Fix the test project using the wrong min deployment target version
This commit is contained in:
parent
521a5f2b4b
commit
ccec69715d
|
@ -69,5 +69,5 @@ script:
|
|||
after_success:
|
||||
- export PATH="/usr/local/opt/curl/bin:$PATH"
|
||||
- curl --version
|
||||
- bash <(curl -s https://codecov.io/bash) -D './DerivedData/macOS' -J '^SDWebImage$' -c -X gcov -F macos -v
|
||||
- bash <(curl -s https://codecov.io/bash) -D './DerivedData/iOS' -J '^SDWebImage$' -c -X gcov -F ios -v
|
||||
- bash <(curl -s https://codecov.io/bash) -D './DerivedData/macOS' -J '^SDWebImage$' -c -X gcov -F macos
|
||||
- bash <(curl -s https://codecov.io/bash) -D './DerivedData/iOS' -J '^SDWebImage$' -c -X gcov -F ios
|
||||
|
|
|
@ -568,6 +568,8 @@
|
|||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 328BAF282240C08E00FC70DD /* Test-Debug.xcconfig */;
|
||||
buildSettings = {
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.10;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
|
@ -575,6 +577,8 @@
|
|||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 328BAF272240C08E00FC70DD /* Test-Release.xcconfig */;
|
||||
buildSettings = {
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.10;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue