Update Travis for auto-deploy to website.

This commit is contained in:
waltje
2018-04-18 00:07:59 -04:00
parent dc1e4576a0
commit 07515fe6f8
3 changed files with 163 additions and 3 deletions

View File

@@ -8,7 +8,7 @@
#
# Project file for the Travis-CI remote builder service.
#
# Version: @(#).travis.yml 1.0.6 2018/03/28
# Version: @(#).travis.yml 1.0.7 2018/04/17
#
# Authors: Natalia Portillo, <claunia@claunia.com>
# Fred N. van Kempen, <decwiz@yahoo.com>
@@ -52,14 +52,16 @@ dist: trusty
language: c
env:
global:
- MAKEFLAGS="-j 4"
matrix:
- PROG=VARCem CROSS=y DEBUG=n
- PROG=VACRCem-debug CROSS=y DEBUG=y
- PROG=VACRCem-dev CROSS=y DEBUG=y DEV_BUILD=y
script:
- cd src
- make -f win/mingw/Makefile.MinGW
- ./.travis-build.sh
addons:
apt:
@@ -82,4 +84,8 @@ notifications:
- "Build details on %{build_url}"
# - "Details on %{build_url}, changes on %{compare_url}"
after_success:
- ./.travis-deploy.sh
# End of file.