mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
46 lines
953 B
YAML
46 lines
953 B
YAML
osx_image: xcode7.3
|
|
|
|
sudo: required
|
|
dist: trusty
|
|
|
|
language: c
|
|
|
|
matrix:
|
|
include:
|
|
- os: osx
|
|
- os: linux
|
|
env: CC=clang CXX=clang++ npm_config_clang=1
|
|
compiler: clang
|
|
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
- app/node_modules
|
|
- $HOME/.electron
|
|
- $HOME/.cache
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libgnome-keyring-dev
|
|
- icnsutils
|
|
- graphicsmagick
|
|
- xz-utils
|
|
- rpm
|
|
- bsdtar
|
|
|
|
before_install:
|
|
- mkdir -p /tmp/git-lfs && curl -L https://github.com/github/git-lfs/releases/download/v1.2.1/git-lfs-$([ "$TRAVIS_OS_NAME" == "linux" ] && echo "linux" || echo "darwin")-amd64-1.2.1.tar.gz | tar -xz -C /tmp/git-lfs --strip-components 1 && /tmp/git-lfs/git-lfs pull
|
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export DISPLAY=:99.0; sh -e /etc/init.d/xvfb start; sleep 3; fi
|
|
|
|
install:
|
|
- nvm install 6
|
|
- npm install
|
|
- npm prune
|
|
|
|
script:
|
|
- npm run dist
|
|
|
|
branches:
|
|
except:
|
|
- "/^v\\d+\\.\\d+\\.\\d+$/"
|