summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-06-24 00:59:15 +0300
committerAndrei Karas <akaras@inbox.ru>2016-06-24 00:59:50 +0300
commitd2e38e0dc95108adef3c5944ba5b710ebeab6a20 (patch)
treea9fb70f5698e9458d3e67badf92681664fa0f566 /tools
parentc77c4debe8373ab6eb0a53d624be379cde366c3d (diff)
downloadevol-hercules-d2e38e0dc95108adef3c5944ba5b710ebeab6a20.tar.gz
evol-hercules-d2e38e0dc95108adef3c5944ba5b710ebeab6a20.tar.bz2
evol-hercules-d2e38e0dc95108adef3c5944ba5b710ebeab6a20.tar.xz
evol-hercules-d2e38e0dc95108adef3c5944ba5b710ebeab6a20.zip
Add gcc snapshot and gcc 4.6 and different flags combinations.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/ci/jobs/gcc46.sh18
-rwxr-xr-xtools/ci/jobs/gccsnapshot.sh19
2 files changed, 37 insertions, 0 deletions
diff --git a/tools/ci/jobs/gcc46.sh b/tools/ci/jobs/gcc46.sh
new file mode 100755
index 0000000..f66f604
--- /dev/null
+++ b/tools/ci/jobs/gcc46.sh
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+export CC=gcc-4.6
+export CXX=g++-4.6
+export LOGFILE=gcc4.6.log
+
+source ./tools/ci/scripts/init.sh
+
+aptget_install gcc-4.6 \
+ git-core \
+ make autoconf automake autopoint \
+ libtool libmysqlclient-dev libz-dev libpcre3-dev
+
+do_init
+build_init
+
+run_configure $*
+run_make
diff --git a/tools/ci/jobs/gccsnapshot.sh b/tools/ci/jobs/gccsnapshot.sh
new file mode 100755
index 0000000..542ce31
--- /dev/null
+++ b/tools/ci/jobs/gccsnapshot.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+export CC=gcc
+export CXX=g++
+export LOGFILE=gcc-snapshot.log
+export PATH=/usr/lib/gcc-snapshot/bin:$PATH
+
+source ./tools/ci/scripts/init.sh
+
+aptget_install gcc-snapshot \
+ git-core \
+ make autoconf automake autopoint \
+ libtool libmysqlclient-dev libz-dev libpcre3-dev
+
+do_init
+build_init
+
+run_configure $*
+run_make