-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
40 lines (40 loc) · 949 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
36
37
38
39
40
language: bash
matrix:
include:
- os: windows
install:
- until choco install make nodejs yarn; do echo; done
- export PATH="$PATH:/c/Program Files (x86)/Yarn/bin:/c/Program Files/nodejs" # yarn & nodejs doesn't support `Shimming`
- os: osx
osx_image: xcode10.3
addons:
homebrew:
packages:
- make
- nodejs
- npm
- yarn
- os: osx
osx_image: xcode11
addons:
homebrew:
packages:
- make
- nodejs
- npm
- yarn
- os: linux
dist: bionic
addons:
apt:
sources:
- sourceline: 'deb https://dl.yarnpkg.com/debian stable main'
key_url: 'https://dl.yarnpkg.com/debian/pubkey.gpg'
packages:
- make
- nodejs
- npm
- yarn
script:
- make all
- make test