summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoris Nagaev <bnagaev@gmail.com>2016-09-21 22:25:24 (GMT)
committerGitHub <noreply@github.com>2016-09-21 22:25:24 (GMT)
commit3198f4432d2aa1f37e501bdf74899594fd8d8f7b (patch)
tree1bf6a45b282738ee4cea76b6df5d5e97a76a3e5e
parent3d76d9f8c3d5ce0feba23662ee6b04652f1a16fa (diff)
parent767bf6f3e17996817cfb2b304ad140bdc6bcd23b (diff)
downloadmxe-3198f4432d2aa1f37e501bdf74899594fd8d8f7b.zip
mxe-3198f4432d2aa1f37e501bdf74899594fd8d8f7b.tar.gz
mxe-3198f4432d2aa1f37e501bdf74899594fd8d8f7b.tar.bz2
Merge pull request #1523 from LuaAndC/travis-download-plugins
travis: download packages of plugins as well
-rw-r--r--.travis.yml2
-rwxr-xr-xtools/plugins-with-additional-packages.sh9
-rwxr-xr-xtools/s3-fetch-and-sync2
3 files changed, 11 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 2014391..937c323 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -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:
diff --git a/tools/plugins-with-additional-packages.sh b/tools/plugins-with-additional-packages.sh
new file mode 100755
index 0000000..4bdef7a
--- /dev/null
+++ b/tools/plugins-with-additional-packages.sh
@@ -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}
diff --git a/tools/s3-fetch-and-sync b/tools/s3-fetch-and-sync
index 57af72c..c8f920d 100755
--- a/tools/s3-fetch-and-sync
+++ b/tools/s3-fetch-and-sync
@@ -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