(travis) minimize mysqld's memory footprint
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / 10_before_install.bash
1 #!/bin/bash
2
3 # Stop pre-started RDBMS and sync for some settle time
4 run_or_err "Stopping MySQL"       "sudo /etc/init.d/mysql stop"
5 run_or_err "Stopping PostgreSQL"  "sudo /etc/init.d/postgresql stop"
6 /bin/sync
7
8 # Sanity check VM before continuing
9 echo "
10 =============================================================================
11
12 = Startup Meminfo
13 $(free -m -t)
14
15 ============================================================================="
16
17 CI_VM_MIN_FREE_MB=2000
18 if [[ "$(free -m | grep 'buffers/cache:' | perl -p -e '$_ = (split /\s+/, $_)[3]')" -lt "$CI_VM_MIN_FREE_MB" ]]; then
19   SHORT_CIRCUIT_SMOKE=1
20   echo_err "
21 =============================================================================
22
23 CI virtual machine stuck in a state with a lot of memory locked for no reason.
24 Under Travis this state usually results in a failed build.
25 Short-circuiting buildjob to avoid false negatives, please restart it manually.
26
27 ============================================================================="
28 fi
29
30 if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then return ; fi
31
32 # Different boxes we run on may have different amount of hw threads
33 # Hence why we need to query
34 # Originally we used to read /sys/devices/system/cpu/online
35 # but it is not available these days (odd). Thus we fall to
36 # the alwas-present /proc/cpuinfo
37 # The oneliner is a tad convoluted - basicaly what we do is
38 # slurp the entire file and get the index off the last
39 # `processor    : XX` line
40 #
41 # We also divide the result by a factor, otherwise the travis VM gets
42 # overloaded (the amount of available swap is just TOOOO damn small)
43 export NUMTHREADS="$(( ( $(perl -0777 -n -e 'print (/ (?: .+ ^ processor \s+ : \s+ (\d+) ) (?! ^ processor ) /smx)' < /proc/cpuinfo) + 1 ) / 3 ))"
44
45 export CACHE_DIR="/tmp/poormanscache"
46
47 # these will be installed no matter what, also some extras unless CLEANTEST
48 common_packages="libapp-nopaste-perl tree"
49
50 if [[ "$CLEANTEST" = "true" ]]; then
51
52   apt_install $common_packages
53
54 else
55
56   #
57   # FIXME these debconf lines should automate the firebird config but do not :(((
58   sudo bash -c 'echo -e "firebird2.5-super\tshared/firebird/enabled\tboolean\ttrue" | debconf-set-selections'
59   sudo bash -c 'echo -e "firebird2.5-super\tshared/firebird/sysdba_password/new_password\tpassword\t123" | debconf-set-selections'
60
61   apt_install $common_packages libmysqlclient-dev memcached firebird2.5-super firebird2.5-dev unixodbc-dev expect
62
63   run_or_err "Cloning poor man's cache from github" "git clone --depth=1 --single-branch --branch=oracle/10.2.0 https://github.com/poortravis/poormanscache.git $CACHE_DIR && $CACHE_DIR/reassemble"
64   run_or_err "Installing OracleXE manually from deb" "sudo dpkg -i $CACHE_DIR/apt_cache/oracle-xe_10.2.0.1-1.1_i386.deb || sudo bash -c 'source maint/travis-ci_scripts/common.bash && apt_install -f'"
65
66 ### config memcached
67   run_or_err "Starting memcached" "sudo /etc/init.d/memcached start"
68   export DBICTEST_MEMCACHED=127.0.0.1:11211
69
70 ### config mysql
71   run_or_err "Installing minimizing MySQL config" "sudo cp maint/travis-ci_scripts/configs/minimal_mysql_travis.cnf /etc/mysql/conf.d/ && sudo chmod 644 /etc/mysql/conf.d/*.cnf"
72   run_or_err "Starting MySQL" "sudo /etc/init.d/mysql start"
73   run_or_err "Creating MySQL TestDB" "mysql -e 'create database dbic_test;'"
74   export DBICTEST_MYSQL_DSN='dbi:mysql:database=dbic_test;host=127.0.0.1'
75   export DBICTEST_MYSQL_USER=root
76
77 ### config pg
78   run_or_err "Starting PostgreSQL" "sudo /etc/init.d/postgresql start"
79   run_or_err "Creating PostgreSQL TestDB" "psql -c 'create database dbic_test;' -U postgres"
80   export DBICTEST_PG_DSN='dbi:Pg:database=dbic_test;host=127.0.0.1'
81   export DBICTEST_PG_USER=postgres
82
83 ### conig firebird
84   # poor man's deb config
85   EXPECT_FB_SCRIPT='
86     spawn dpkg-reconfigure --frontend=text firebird2.5-super
87     expect "Enable Firebird server?"
88     send "\177\177\177\177yes\r"
89     expect "Password for SYSDBA"
90     send "123\r"
91     sleep 1
92     expect eof
93   '
94   # creating testdb
95   # FIXME - this step still fails from time to time >:(((
96   # has to do with the FB reconfiguration I suppose
97   # for now if it fails twice - simply skip FB testing
98   for i in 1 2 ; do
99
100     run_or_err "Re-configuring Firebird" "
101       sync
102       DEBIAN_FRONTEND=text sudo expect -c '$EXPECT_FB_SCRIPT'
103       sleep 1
104       sync
105       # restart the server for good measure
106       sudo /etc/init.d/firebird2.5-super stop || true
107       sleep 1
108       sync
109       sudo /etc/init.d/firebird2.5-super start
110       sleep 1
111       sync
112     "
113
114     if run_or_err "Creating Firebird TestDB" \
115       "echo \"CREATE DATABASE '/var/lib/firebird/2.5/data/dbic_test.fdb';\" | sudo isql-fb -u sysdba -p 123"
116     then
117
118       run_or_err "Fetching and building Firebird ODBC driver" '
119         cd "$(mktemp -d)"
120         wget -qO- http://sourceforge.net/projects/firebird/files/firebird-ODBC-driver/2.0.2-Release/OdbcFb-Source-2.0.2.153.gz/download | tar -zx
121         cd Builds/Gcc.lin
122         perl -p -i -e "s|/usr/lib64|/usr/lib/x86_64-linux-gnu|g" ../makefile.environ
123         make -f makefile.linux
124         sudo make -f makefile.linux install
125       '
126
127       sudo bash -c 'cat >> /etc/odbcinst.ini' <<< "
128 [Firebird]
129 Description     = InterBase/Firebird ODBC Driver
130 Driver          = /usr/lib/x86_64-linux-gnu/libOdbcFb.so
131 Setup           = /usr/lib/x86_64-linux-gnu/libOdbcFb.so
132 Threading       = 1
133 FileUsage       = 1
134 "
135
136       export DBICTEST_FIREBIRD_DSN=dbi:Firebird:dbname=/var/lib/firebird/2.5/data/dbic_test.fdb
137       export DBICTEST_FIREBIRD_USER=SYSDBA
138       export DBICTEST_FIREBIRD_PASS=123
139
140       export DBICTEST_FIREBIRD_INTERBASE_DSN=dbi:InterBase:dbname=/var/lib/firebird/2.5/data/dbic_test.fdb
141       export DBICTEST_FIREBIRD_INTERBASE_USER=SYSDBA
142       export DBICTEST_FIREBIRD_INTERBASE_PASS=123
143
144       export DBICTEST_FIREBIRD_ODBC_DSN="dbi:ODBC:Driver=Firebird;Dbname=/var/lib/firebird/2.5/data/dbic_test.fdb"
145       export DBICTEST_FIREBIRD_ODBC_USER=SYSDBA
146       export DBICTEST_FIREBIRD_ODBC_PASS=123
147
148       break
149     fi
150
151   done
152
153 ### config oracle
154   SRV_ORA_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
155
156   # without this some of the more zealous tests can exhaust the amount
157   # of listeners and oracle is too slow to spin extras up :(
158   sudo bash -c "echo -e '\nprocesses=150' >> $SRV_ORA_HOME/config/scripts/init.ora"
159
160   EXPECT_ORA_SCRIPT='
161     spawn /etc/init.d/oracle-xe configure
162
163     sleep 1
164     set send_slow {1 .005}
165
166     expect "Specify the HTTP port that will be used for Oracle Application Express"
167     sleep 0.5
168     send -s "8021\r"
169
170     expect "Specify a port that will be used for the database listener"
171     sleep 0.5
172     send -s "1521\r"
173
174     expect "Specify a password to be used for database accounts"
175     sleep 0.5
176     send -s "adminpass\r"
177
178     expect "Confirm the password"
179     sleep 0.5
180     send -s "adminpass\r"
181
182     expect "Do you want Oracle Database 10g Express Edition to be started on boot"
183     sleep 0.5
184     send -s "n\r"
185
186     sleep 0.5
187     expect "Configuring Database"
188
189     sleep 1
190     expect eof
191     wait
192   '
193
194   # if we do not redirect to some random file, but instead try to capture
195   # into a var the way run_or_err does - everything hangs
196   # FIXME: I couldn't figure it out after 3 hours of headdesking,
197   # would be nice to know the reason eventually
198   run_or_err "Configuring OracleXE" "sudo $(which expect) -c '$EXPECT_ORA_SCRIPT' &>/tmp/ora_configure_10.2.log"
199
200   export DBICTEST_ORA_DSN=dbi:Oracle://localhost:1521/XE
201   export DBICTEST_ORA_USER=dbic_test
202   export DBICTEST_ORA_PASS=abc123456
203   export DBICTEST_ORA_EXTRAUSER_DSN="$DBICTEST_ORA_DSN"
204   export DBICTEST_ORA_EXTRAUSER_USER=dbic_test_extra
205   export DBICTEST_ORA_EXTRAUSER_PASS=abc123456
206
207   run_or_err "Create Oracle users" "ORACLE_SID=XE ORACLE_HOME=$SRV_ORA_HOME $SRV_ORA_HOME/bin/sqlplus -L -S system/adminpass @/dev/stdin <<< '
208     CREATE USER $DBICTEST_ORA_USER IDENTIFIED BY $DBICTEST_ORA_PASS;
209     GRANT connect,resource TO $DBICTEST_ORA_USER;
210     CREATE USER $DBICTEST_ORA_EXTRAUSER_USER IDENTIFIED BY $DBICTEST_ORA_EXTRAUSER_PASS;
211     GRANT connect,resource TO $DBICTEST_ORA_EXTRAUSER_USER;
212   '"
213
214   export ORACLE_HOME="$CACHE_DIR/ora_instaclient/x86-64/oracle_instaclient_10.2.0.5.0"
215 fi
216
217 # The debian package is oddly broken - uses a /bin/env based shebang
218 # so nothing works under a brew, fixed in libapp-nopaste-perl 0.92-3
219 # http://changelogs.ubuntu.com/changelogs/pool/universe/liba/libapp-nopaste-perl/libapp-nopaste-perl_0.96-1/changelog
220 #
221 # Since the vm runs an old version of umbongo fix things ourselves
222 sudo /usr/bin/perl -p -i -e 's|#!/usr/bin/env perl|#!/usr/bin/perl|' $(which nopaste)