-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
52 lines (40 loc) · 1.14 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
44
45
46
47
48
49
50
51
52
osx_image: xcode8.3
sudo: false
dist: trusty
language: node_js
node_js: "7"
env:
global:
- ELECTRON_CACHE=$HOME/.cache/electron
- ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
os:
- linux
- osx
cache:
directories:
- node_modules
- $HOME/.cache/electron
- $HOME/.cache/electron-builder
- $HOME/.npm/_prebuilds
addons:
apt:
packages:
- libsecret-1-0
- icnsutils
- graphicsmagick
- rpm
before_install:
- mkdir -p /tmp/git-lfs && curl -L https://github.com/github/git-lfs/releases/download/v2.2.0/git-lfs-$([ "$TRAVIS_OS_NAME" == "linux" ] && echo "linux" || echo "darwin")-amd64-2.2.0.tar.gz | tar -xz -C /tmp/git-lfs --strip-components 1 && /tmp/git-lfs/git-lfs pull
- mkdir dist
- curl -L https://yarnpkg.com/latest.tar.gz | tar xvz -C dist --strip-components=1 && mv dist $HOME/.yarn
- export PATH="$HOME/.yarn/bin:$PATH"
install:
- yarn
script:
#- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then yarn linux; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then yarn mac; fi
before_cache:
- rm -rf $HOME/.cache/electron-builder/wine
branches:
except:
- "/^v\\d+\\.\\d+\\.\\d+$/"