summaryrefslogtreecommitdiff
path: root/tools/ci/jobs/gcc5.sh
blob: da20dadf40b0a24613f2244bbfd1e35fe195fd5d (plain) (blame)
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
#!/bin/bash

export CC=gcc-5
export CXX=g++-5
export LOGFILE=gcc5.log

source ./tools/ci/scripts/init.sh

aptget_install gcc-5 g++-5 \
    git-core \
    make autoconf automake autopoint \
    libtool libmysqlclient-dev libz-dev libpcre3-dev

do_init
clone_servercode
mkdir server-code/src/evol
cp -r evol-hercules/* server-code/src/evol/
check_error $?
cd server-code/src/evol
check_error $?

ls -la
ls -la ..
run_configure $*
run_make