From abda01129c156b1a921d1a658a6d523cd2df3111 Mon Sep 17 00:00:00 2001 From: Timothy Gu Date: Wed, 16 Dec 2015 23:04:15 -0800 Subject: [PATCH] Make Travis CI build build-matrix.html Fixes #1074. --- .travis.yml | 2 +- tools/travis-push.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d6024c31..d6c9eea9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: c sudo: false script: - - make versions.json + - make build-matrix.html versions.json - if [ "$GH_TOKEN" != "" ]; then ./tools/travis-push.sh; fi env: diff --git a/tools/travis-push.sh b/tools/travis-push.sh index 998ddaee..da77107d 100755 --- a/tools/travis-push.sh +++ b/tools/travis-push.sh @@ -8,6 +8,6 @@ git config --global push.default simple git config credential.helper "store --file=.git/credentials" echo "https://${GH_TOKEN}:@github.com" > .git/credentials git remote set-url origin 'https://github.com/mxe/mxe.git' -git commit -a -m 'Update versions.json' || true +git commit -a -m 'Update versions.json & build-matrix.html' || true git push origin HEAD:master git push origin HEAD:gh-pages