Fix the test project using the wrong min deployment target version

This commit is contained in:
DreamPiggy 2019-04-27 14:18:03 +08:00
parent 521a5f2b4b
commit ccec69715d
2 changed files with 6 additions and 2 deletions

View File

@ -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

View File

@ -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;
};