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/sh -ex | |
DEVELOPER=`xcode-select --print-path` | |
PLATFORM="iPhoneOS" | |
ARCH="armv7" | |
IPHONE_SDK="7.0" | |
IPHONE_MIN_VERSION="5.0" | |
VERSION="1.3.0" | |
NASM_VERSION="2.10.09" |
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
$ ./build.sh | |
++ xcode-select --print-path | |
+ DEVELOPER=/Applications/Xcode.app/Contents/Developer | |
+ PLATFORM=iPhoneOS | |
+ ARCH=armv7 | |
+ IPHONE_SDK=7.0 | |
+ IPHONE_MIN_VERSION=5.0 | |
+ VERSION=1.3.0 | |
+ NASM_VERSION=2.10.09 | |
+ AUTOCONF_VERSION=2.69 |
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
Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.yi2ylKg124/Render | |
HOME=/var/_xcsbuildd | |
LOGNAME=_xcsbuildd | |
PATH=/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin | |
PWD=/Library/Developer/XcodeServer/Integrations/Caches/c9e0e876ef9dbb996df76e73d3ac8ad1/Source | |
SHELL=/bin/false | |
SHLVL=1 | |
SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.CChp5yaB4Q/Listeners | |
TMPDIR=/var/folders/df/_sxbhzn54s34nb_bvkc68xfc000086/T/ | |
USER=_xcsbuildd |
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
#include "clar_libgit2.h" | |
#include "fileops.h" | |
#include "stash_helpers.h" | |
static git_signature *signature; | |
static git_repository *repo; | |
static git_index *repo_index; | |
void test_stash_apply__initialize(void) | |
{ |