Created
April 12, 2013 20:11
-
-
Save kaspermunck/5374751 to your computer and use it in GitHub Desktop.
Installs dependency (WaxSim) of XcodeTest, which is needed to run application unit tests from command line. Run from before_install: in .travis.yml before building with XcodeTest.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# run prior to building with XcodeTest to install WaxSim. | |
# clone and install waxsim | |
git clone https://github.com/jonathanpenn/WaxSim.git | |
cd WaxSim | |
xcodebuild install DSTROOT=/ INSTALL_PATH=/usr/local/bin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment