Entryable/Makefile

37 lines
768 B
Makefile
Raw Normal View History

2019-03-27 11:51:19 +08:00
.PHONY: podUpdate
2018-05-29 17:14:46 +08:00
podUpdate:
pod trunk push YumeAlamofire.podspec
2019-03-27 11:51:19 +08:00
.PHONY: podLint
2018-05-29 17:14:46 +08:00
podLint:
pod lib lint YumeAlamofire.podspec --allow-warnings
2019-03-27 11:51:19 +08:00
.PHONY: carthage
carthage:
carthage build \
--no-skip-current \
--platform ios \
--configuration Release \
YumeAlamofire JSONMock
test -d Carthage/Build/iOS/YumeAlamofire.framework
test -d Carthage/Build/iOS/JSONMock.framework
2019-03-27 11:51:19 +08:00
.PHONY: pod
pod: podLint
2019-03-27 11:51:19 +08:00
.PHONY: spm
spm:
swift test
# xcode:
# - RELEASE=Debug
# - SCHEME=YumeAlamofire
# - SDK=iphonesimulator
# DESTINATION='platform=iOS Simulator,OS=11.3,name=iPhone X'
# xcodebuild \
# -project JSONDecodeKit.xcodeproj \
# -scheme $SCHEME \
# -configuration $RELEASE \
# -sdk $SDK \
# -destination "$DESTINATION" \
# clean build test