forked from ish-app/ish
-
Notifications
You must be signed in to change notification settings - Fork 12
/
.travis.yml
43 lines (42 loc) · 1.1 KB
/
.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
34
35
36
37
38
39
40
41
42
43
macros:
- &linux
language: c
os: linux
dist: xenial
compiler: clang
addons:
apt:
packages:
- ninja-build
install:
- source ~/virtualenv/python3.6/bin/activate
- pip install meson
script:
- meson build $MESON_OPTS
- ninja -C build $NINJA_TARGET
matrix:
include:
- <<: *linux
env:
- MESON_OPTS=-Djit=true
- NINJA_TARGET=test
- <<: *linux
env:
- MESON_OPTS=-Djit=false
- NINJA_TARGET=
- language: objective-c
osx_image: xcode10.1
install:
- pip3 install meson==0.49.2
addons:
homebrew:
packages:
- ninja
- llvm
- yarn
update: true
script:
- xcodebuild -project iSH.xcodeproj -scheme iSH -sdk iphoneos CODE_SIGNING_ALLOWED=NO
exclude:
- language: objective-c
env: MESON_OPTS=-Djit=false