mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
* Add CircleCI Badge * Fix typo * Replace yarn by npm * Replace yarn by npm * Always generate the artifacts * Use yarn for everything * Also pin dependencies with Yarn * Install yarn * Adjusted config * Only copy ZIP file * Only build our branches * Prevent Travis from building on macOS
40 lines
649 B
YAML
40 lines
649 B
YAML
sudo: required
|
|
dist: trusty
|
|
|
|
language: node_js
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
node_js: 7.9.0
|
|
env: CC=clang CXX=clang++ npm_config_clang=1
|
|
compiler: clang
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- gcc-multilib
|
|
- g++-multilib
|
|
- libgnome-keyring-dev
|
|
- icnsutils
|
|
- graphicsmagick
|
|
- xz-utils
|
|
- rpm
|
|
- bsdtar
|
|
- snapd
|
|
|
|
before_install:
|
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export DISPLAY=:99.0; sh -e /etc/init.d/xvfb start; sleep 3; fi
|
|
- npm install -g yarn
|
|
|
|
cache: yarn
|
|
|
|
install:
|
|
- yarn
|
|
|
|
after_success:
|
|
- yarn run dist
|
|
|
|
branches:
|
|
except:
|
|
- "/^v\\d+\\.\\d+\\.\\d+$/"
|