Skip to content

Instantly share code, notes, and snippets.

View randomstep's full-sized avatar

Step Christopher randomstep

  • WinTriad
View GitHub Profile
@mattyohe
mattyohe / Makefile
Created April 19, 2017 00:35
Partial Makefile that resolves random Error 65 issues on circle (and travis?)
.PHONY: _build
_build:
set -o pipefail && \
xcodebuild build -workspace $(WORKSPACE).xcworkspace -scheme $(SCHEME) \
-sdk $(SDK) -destination $(DESTINATION) \
CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY= 2>&1 | \
tee $(CIRCLE_ARTIFACTS)/xcode_raw_build.log | \
xcpretty --color
.PHONY: _test