Merge pull request #1523 from LuaAndC/travis-download-plugins

travis: download packages of plugins as well
This commit is contained in:
Boris Nagaev 2016-09-22 02:25:24 +04:00 committed by GitHub
commit 3198f4432d
3 changed files with 11 additions and 2 deletions

View File

@ -4,7 +4,7 @@ sudo: false
script:
- make docs/build-matrix.html docs/versions.json
- if [ "$GH_TOKEN" != "" ]; then ./tools/travis-push.sh; fi
- make download -j 6 -k
- make download -j 6 -k MXE_PLUGIN_DIRS="$(./tools/plugins-with-additional-packages.sh)"
env:
global:

View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
# This file is part of MXE. See LICENSE.md for licensing information.
# List of dirs of plugins with additional packages
# as opposed to customisation plugins.
# See plugins/README.md for more information.
echo plugins/{apps,luarocks,native,tcl.tk}

View File

@ -22,7 +22,7 @@ file_issue=false
# List of plugin dirs to include in downloads
# Can't include all subdirs since some affect versions
plugin_dirs=`echo plugins/{apps,luarocks,native,tcl.tk}`
plugin_dirs=`./tools/plugins-with-additional-packages.sh`
cd ~/mxe && git pull