forked from ish-app/ish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
35 lines (35 loc) · 812 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
34
35
jobs:
include:
- &linux
language: c
os: linux
dist: bionic
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
env:
- MESON_OPTS=-Dengine=jit
- NINJA_TARGET=test
compiler: gcc
- <<: *linux
compiler: clang
- language: objective-c
os: osx
osx_image: xcode11.5
install:
- pip3 install meson
addons:
homebrew:
packages:
- ninja
- llvm
update: true
script:
- xcodebuild -project iSH.xcodeproj -scheme iSH -sdk iphoneos CODE_SIGNING_ALLOWED=NO