-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
46 lines (41 loc) · 1.41 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
git:
depth: false # It is not performed any git operation. So, it is only required the last/current commit
before_cache:
- rm -rf $HOME/.cache/electron-builder/wine
# Cache will not work as expected. Check https://github.com/travis-ci/travis-ci/issues/8519 and the documentation linked
cache:
directories:
- $HOME/.npm
- node_modules
- $HOME/.cache/electron
- $HOME/.cache/electron-builder
jobs:
include:
- stage: lint
language: node_js
node_js: "10"
install: npm ci
script: npm run lint -s
- stage: build
os: osx
osx_image: xcode9.4
env:
- ELECTRON_CACHE=$HOME/.cache/electron
- ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
language: node_js
node_js: "10"
install: npm ci
script: npm run electron-build-unpacked
- stage: build
os: linux
services: docker
language: generic
install: skip
script:
- |
docker run --rm \
-v ${PWD}:/project \
-v ~/.cache/electron:/root/.cache/electron \
-v ~/.cache/electron-builder:/root/.cache/electron-builder \
electronuserland/builder:wine \
/bin/bash -c "npm ci && npm run electron-build-unpacked -- --linux --win"