-
Notifications
You must be signed in to change notification settings - Fork 51
/
.travis.yml
64 lines (55 loc) · 1.71 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
53
54
55
56
57
58
59
60
61
62
63
64
dist: trusty
language: node_js
os:
- linux
- osx
node_js:
- 7
- 8
cache:
directories:
- node_modules
- app/node_modules
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- xz-utils
- icnsutils
- graphicsmagick
- rpm
install:
- export CXX="g++-4.8"
- npm install -g npm@latest
- npm install
script:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then npm run package-mac ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then npm run package-linux ; fi
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/964abb64511d66538c2d
on_success: change
on_failure: always
on_start: never
deploy:
- provider: releases
api_key:
secure: p9AheahBjpBjaM7SKuxS3RfTvwIu4WfCeKT6AVti68BnLRQ203mSNjB+/A5Slhh8qg1jcfMSi/X9/uvB5H+GDHdkpSBaWvlOAOzhjgaosRBo1RjyfU/M1Vg2tDI5LFkjARhDrkX75NhVP34Jxng8S4ohu7FAR0fmkOKrcR1XKrXQsCIOb+fY/pV0LswYgZXX1u4y9aEsAMVmKH075eL3OxOo/hSIE8q+jSbWKU9NEggBYLpwOx5WBMi7/V0t6RrUftcxNu4gJZZdsGW8MV0S/0ytDwwEi9zZ79kMG8ctp/wKu5/56rSMagbXQisYVAJxxzXkqrYBz0mBPnvNFvEoHejXxdyBxq1m3HEo5UkTJaUWpX/TwaiAW/NVt7IGbNjWvekXXXMwnJ1YmJ+mwl2NSHq9aLvqBpoquHUviggDnsTxNcfywnu6zXbJXxFcafFTzBH8TGuqL0ypuCgivSfqxeTq9e0nTJCEB/ALEVaAQUzR5UfySBYWrsYUkl0FMCaekoXaI7owx0VsWp6CCUJOkWHBKVQWyY1suPAsfhvvfmyMWb8XaNS/hKD4vDlV7tPscmUXud5Cf/TTUb+Mg2ZSlAoZQpOVAV/QYqO0h+7Im1Haj1egne29z8RVWpbAorby6sq5wlrV4FghSaCTxiLYE+X8WH3kWoaOWnS0MwpxtD4=
file_glob: true
file:
- release/*.exe
- release/*.dmg
- release/*.deb
- release/*.rpm
- release/*.AppImage
skip_cleanup: true
prerelease: true
draft: true
on:
repo: MichaelMure/Arbore
tags: true
all_branches: true
node: 7