forked from theos/theos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
33 lines (29 loc) · 898 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
os: osx
osx_image: xcode7.2
language: objective-c
sudo: false
env:
global:
# $THEOS is absolutely needed for theos to even be found
- THEOS=$PWD
matrix:
# repos known to work with recent versions of theos. alphabetical order
- TEST_REPO=https://github.com/hbang/libcephei.git
- TEST_REPO=https://github.com/hbang/TypeStatus.git
- TEST_REPO=https://github.com/thomasfinch/PriorityHub.git
before_install:
# os x: update homebrew and install dependencies
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install dpkg ldid; fi
script:
# clone and cd
- git clone --recursive $TEST_REPO test
- cd test
# some of the test repos still use a theos symlink
- ln -s $THEOS theos
# build!
- make package messages=yes
# go back up
- cd ..
# remove test, ready for the next one
- rm -rf test