Skip to content

Commit

Permalink
fix(ci): ios integration test
Browse files Browse the repository at this point in the history
Signed-off-by: Godefroy Ponsinet <godefroy.ponsinet@outlook.com>
  • Loading branch information
90dy committed Aug 22, 2019
1 parent 6dffa4e commit d693580
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
24 changes: 20 additions & 4 deletions client/Makefile
Expand Up @@ -286,7 +286,11 @@ fclean.osx:
.PHONY: debug.ios
debug.ios: deps.ios get_iphone_udid
make debug.react-native
$(RN) run-ios --no-packager --configuration=Debug --scheme=debug $(IOS_UDID)
$(RN) run-ios \
--no-packager \
--configuration=Debug \
--scheme=debug \
$(IOS_UDID)

.PHONY: test.debug.ios
test.debug.ios: RN = cavy
Expand All @@ -295,7 +299,11 @@ test.debug.ios: debug.ios

.PHONY: release.ios
release.ios: deps.ios get_iphone_udid
$(RN) run-ios --no-packager --configuration=Release --scheme=release $(IOS_UDID)
$(RN) run-ios \
--no-packager \
--configuration=Release \
--scheme=release \
$(IOS_UDID)

.PHONY: test.release.ios
test.release.ios: RN = cavy
Expand All @@ -304,7 +312,11 @@ test.release.ios: release.ios

.PHONY: adhoc.ios
adhoc.ios: deps.ios get_iphone_udid
$(RN) run-ios --no-packager --configuration=Release --scheme=adhoc $(IOS_UDID)
$(RN) run-ios \
--no-packager \
--configuration=adhoc \
--scheme=adhoc \
$(IOS_UDID)

.PHONY: test.adhoc.ios
test.adhoc.ios: RN = cavy
Expand All @@ -313,7 +325,11 @@ test.adhoc.ios: adhoc.ios

.PHONY: house.ios
house.ios: deps.ios get_iphone_udid
$(RN) run-ios --no-packager --configuration=Release --scheme=house $(IOS_UDID)
$(RN) run-ios \
--no-packager \
--configuration=house \
--scheme=house \
$(IOS_UDID)

.PHONY: test.house.ios
test.house.ios: RN = cavy
Expand Down
1 change: 0 additions & 1 deletion client/ios/Berty.xcodeproj/project.pbxproj
Expand Up @@ -5,7 +5,6 @@
};
objectVersion = 46;
objects = {

/* Begin PBXBuildFile section */
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
Expand Down
2 changes: 1 addition & 1 deletion client/ios/Podfile.lock
Expand Up @@ -298,6 +298,6 @@ SPEC CHECKSUMS:
RNViewShot: 5c5b4c5540046e5fb0de4a48a311571816c43c86
yoga: 312528f5bbbba37b4dcea5ef00e8b4033fdd9411

PODFILE CHECKSUM: 7a2afc389458c64f8a30026a52ad84b27666d61f
PODFILE CHECKSUM: 6c39963c01370fecaddd7e13ad59476531eb7311

COCOAPODS: 1.7.5

0 comments on commit d693580

Please sign in to comment.