forked from wrkzcoin/wrkz-wallet-pluton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
70 lines (68 loc) · 1.44 KB
/
.travis.yml
File metadata and controls
70 lines (68 loc) · 1.44 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
matrix:
include:
- os: osx
language: node_js
node_js:
- lts/*
env:
- ELECTRON_CACHE=$HOME/.cache/electron
- ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
- os: linux
language: node_js
node_js:
- lts/*
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-multilib
- gcc-8
- g++-8
- g++-multilib
- icnsutils
- graphicsmagick
- xz-utils
- xorriso
- rpm
- os: windows
language: node_js
node_js:
- lts/*
env:
- ELECTRON_CACHE=$HOME/.cache/electron
- ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
- YARN_GPG=no
before_install:
- yarn install --network-timeout 1000000
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CXX="g++-8"; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CC="gcc-8"; fi
install:
- yarn --ignore-engines
- |
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
/sbin/start-stop-daemon \
--start \
--quiet \
--pidfile /tmp/custom_xvfb_99.pid \
--make-pidfile \
--background \
--exec /usr/bin/Xvfb \
-- :99 -ac -screen 0 1280x1024x16
else
:
fi
script:
- yarn package
before_deploy:
- rm -rf ./release/*.blockmap
- rm -rf ./release/*.zip
dist: xenial
deploy:
- provider: releases
api_key: $GITHUB_TOKEN
file_glob: true
file: "release/proton-wallet*"
skip_cleanup: true
on:
tags: true