blockbench/.travis.yml

56 lines
963 B
YAML
Raw Normal View History

2017-10-27 01:04:16 +08:00
sudo: required
2017-10-27 01:33:15 +08:00
dist: trusty
language: c
2017-10-27 01:04:16 +08:00
matrix:
include:
- os: osx
- os: linux
2017-10-27 01:33:15 +08:00
env: CC=clang CXX=clang++ npm_config_clang=1
compiler: clang
2017-10-27 01:04:16 +08:00
node_js:
2017-10-27 01:33:15 +08:00
- 6
2017-10-27 01:04:16 +08:00
cache:
directories:
2017-10-27 01:33:15 +08:00
- node_modules
2017-10-27 01:04:16 +08:00
addons:
apt:
sources:
- ubuntu-toolchain-r-test
2017-10-27 01:38:24 +08:00
packages:
- g++-4.8
- icnsutils
- graphicsmagick
- libgnome-keyring-dev
- xz-utils
- xorriso
- xvfb
2017-10-27 01:33:15 +08:00
2017-10-27 01:04:16 +08:00
install:
- nvm install 6
- npm install electron-builder@next
- npm install
- export DISPLAY=':99.0'
2017-10-27 01:33:15 +08:00
- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
2017-10-27 01:04:16 +08:00
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start &
- sleep 3
script:
2017-10-27 01:33:15 +08:00
- npm run dist
2017-10-27 16:11:45 +08:00
deploy:
provider: releases
user: JannisX11
api_key: $GH_TOKEN
2017-10-27 16:33:29 +08:00
file: "/home/travis/build/JannisX11/blockbench/dist/Blockbench_1.9.1_amd64.deb"
2017-10-27 16:11:45 +08:00
skip_cleanup: true
on:
tags: true