blob: 492b27b656397bafc1045d725fa22caf3f16aa93 (
plain)
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
|
osx_image: xcode8.3
dist: trusty
sudo: false
language: node_js
node_js: "8"
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
before_install:
# OSX tar -C doesn't seem to create the directory if it doesnt exist.
- mkdir -p $HOME/.yarn
- curl -L https://yarnpkg.com/latest.tar.gz | tar xvz -C $HOME/.yarn --strip-components 1
- export PATH="$HOME/.yarn/bin:$PATH"
install:
- yarn
script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then yarn dist; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then yarn dist -- --mac --win; fi
before_cache:
- rm -rf $HOME/.cache/electron-builder/wine
branches:
only:
- master
|