forked from SemanticMediaWiki/SemanticWatchlist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.install.sh
69 lines (51 loc) · 1.6 KB
/
.travis.install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#! /bin/bash
set -x
originalDirectory=$(pwd)
cd ..
wget https://github.com/wikimedia/mediawiki/archive/$MW.tar.gz
tar -zxf $MW.tar.gz
mv mediawiki-$MW phase3
cd phase3
composer install --prefer-source
if [ "$DB" == "postgres" ]
then
psql -c 'create database its_a_mw;' -U postgres
php maintenance/install.php --dbtype $DBTYPE --dbuser postgres --dbname its_a_mw --pass nyan TravisWiki admin --scriptpath /TravisWiki
else
mysql -e 'create database its_a_mw;'
php maintenance/install.php --dbtype $DBTYPE --dbuser root --dbname its_a_mw --dbpath $(pwd) --pass nyan TravisWiki admin --scriptpath /TravisWiki
fi
cd extensions
cp -r $originalDirectory SemanticWatchlist
cd SemanticWatchlist
composer install --prefer-source
cd ../..
if [ ! -z $SMW ]
then
composer require "mediawiki/semantic-media-wiki=$SMW" --prefer-source
fi
cat <<EOT >> composer.local.json
{
"extra": {
"merge-plugin": {
"merge-dev": true,
"include": [
"extensions/*/composer.json"
]
}
}
}
EOT
composer install --prefer-source
echo 'require_once( __DIR__ . "/extensions/SemanticWatchlist/SemanticWatchlist.php" );' >> LocalSettings.php
if [ ! -z $SMW ]
then
echo 'wfLoadExtension( "SemanticMediaWiki" );' >> LocalSettings.php
fi
echo 'error_reporting(E_ALL| E_STRICT);' >> LocalSettings.php
echo 'ini_set("display_errors", 1);' >> LocalSettings.php
echo '$wgShowExceptionDetails = true;' >> LocalSettings.php
echo '$wgShowDBErrorBacktrace = true;' >> LocalSettings.php
echo '$wgDevelopmentWarnings = true;' >> LocalSettings.php
echo "putenv( 'MW_INSTALL_PATH=$(pwd)' );" >> LocalSettings.php
php maintenance/update.php --quick