Skip to content
This repository has been archived by the owner on May 20, 2020. It is now read-only.

Commit

Permalink
basic makefile for getting and building apps + running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
santiycr committed Aug 28, 2013
0 parents commit 6a89cd2
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
apps/src/UICatalog
apps/built
19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
all: clean download-apps build-apps test

test:
nosetests tests

download-apps: clean
cd apps/src; \
curl -LO http://developer.apple.com/library/ios/samplecode/UICatalog/UICatalog.zip; \
unzip UICatalog.zip; \
rm UICatalog.zip

build-apps:
cd apps/src/UICatalog; \
xcodebuild -sdk iphonesimulator6.1 -arch i386; \
mv build/Release-iphonesimulator/UICatalog.app ../../built/

clean:
rm -rf apps/built
rm -rf apps/src/UICatalog
2 changes: 2 additions & 0 deletions dependencies.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
nose==1.3.0
selenium==2.35.0

0 comments on commit 6a89cd2

Please sign in to comment.