Travis CI continuous build
current travis setup
github + Travis CI
Travis CI Integration
Add a .travis.yml file to your repository
.travis.yml file to your repositoryos: osx
osx_image: xcode9.4
language: node_js
node_js: "8"
sudo: required
env:
global:
- ELECTRON_CACHE=$HOME/.cache/electron
- ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
# specifying npm version as
# by default travis seemed to sue 4.2.0
# https://docs.travis-ci.com/user/languages/javascript-with-nodejs/#using-a-specific-npm-version
install:
- node --version
- npm i -g npm@5
- npm --version
- npm install
- npm run make_js
script:
- npm run build:mwl:publish:always;
- ls ./dist;
- find . | grep mac.zip;
- find . | grep x86_64.AppImage;
- find . | grep .exe;
branches:
except:
- # Do not build tags that we create when we upload to GitHub Releases
- /^(?i:continuous)/package.json
package.jsonElectron builder documentation
Last updated