blob: da56baf906ed8ae38e64edeaf491d0b85a9c22eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/bash
export CC=gcc-5
export CXX=g++-5
export LOGFILE=gcc5.log
source ./tools/ci/scripts/init.sh
aptget_install git-core ca-certificates \
make python
do_init
rm -rf tools
rm -rf server-code
clone_tool
clone_servercode
cd evol-hercules
make validate
check_error $?
|