Jenkins: Display all installed mods and files at end of testing.

Closes #372.
This commit is contained in:
Paul Fenwick 2015-04-21 20:31:39 +10:00
parent 93a88a8596
commit 154af9e41e
1 changed files with 7 additions and 0 deletions

View File

@ -32,3 +32,10 @@ for f in ${COMMIT_CHANGES}
do
mono --debug ckan.exe install -c $f --headless
done
# Show all installed mods.
echo "Installed mods:"
mono --debug ckan.exe list --porcelain
perl -e'@installed = `mono --debug ckan.exe list --porcelain`; foreach (@installed) { /^\S\s(?<mod>\S+)/ and system("mono --debug ckan.exe show $+{mod}"); } exit 0;'