mirror of
https://github.com/Fabio286/antares.git
synced 2024-12-26 08:43:10 +01:00
Added .travis.yml
This commit is contained in:
parent
1ecb6d892c
commit
f12f00dbb7
40
.travis.yml
Normal file
40
.travis.yml
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
sudo: false
|
||||||
|
|
||||||
|
language: node_js
|
||||||
|
node_js: 12
|
||||||
|
|
||||||
|
before_install:
|
||||||
|
- npm install
|
||||||
|
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- node_modules
|
||||||
|
- app/node_modules
|
||||||
|
- $HOME/.cache/electron
|
||||||
|
- $HOME/.cache/electron-builder
|
||||||
|
- $HOME/.npm/_prebuilds
|
||||||
|
|
||||||
|
env:
|
||||||
|
global:
|
||||||
|
- ELECTRON_CACHE=$HOME/.cache/electron
|
||||||
|
- ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
include:
|
||||||
|
- stage: Test
|
||||||
|
script:
|
||||||
|
- npm test
|
||||||
|
- stage: Deploy Windows & Mac
|
||||||
|
if: tag IS present
|
||||||
|
os: osx
|
||||||
|
osx_image: xcode10.1
|
||||||
|
script:
|
||||||
|
- npm run publish -- --mac --win
|
||||||
|
before_cache:
|
||||||
|
- rm -rf $HOME/.cache/electron-builder/wine
|
||||||
|
- stage: Deploy linux
|
||||||
|
if: tag IS present
|
||||||
|
os: linux
|
||||||
|
dist: trusty
|
||||||
|
script:
|
||||||
|
- npm run publish
|
Loading…
Reference in New Issue
Block a user