Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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.
#!/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