diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-03-24 20:48:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-03-24 20:58:40 +0300 |
commit | 0d59961f707234cf6f922ef437c02124f7b92da4 (patch) | |
tree | 6cd95aa7424c8758c1eda1b691d82cc3437af5ee /tools/ci/jobs | |
parent | 40fb66184b04e9f2647d019d5a974cb13f6afc3b (diff) | |
download | plus-0d59961f707234cf6f922ef437c02124f7b92da4.tar.gz plus-0d59961f707234cf6f922ef437c02124f7b92da4.tar.bz2 plus-0d59961f707234cf6f922ef437c02124f7b92da4.tar.xz plus-0d59961f707234cf6f922ef437c02124f7b92da4.zip |
Add into .gitlab-ci.yml builds on gentoo with gcc 3.
Diffstat (limited to 'tools/ci/jobs')
-rwxr-xr-x | tools/ci/jobs/gcc3.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/ci/jobs/gcc3.sh b/tools/ci/jobs/gcc3.sh new file mode 100755 index 000000000..cce38d75e --- /dev/null +++ b/tools/ci/jobs/gcc3.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +export CC=gcc-3.4.6 +export CXX=g++-3.4.6 +export LOGFILE=gcc3.log + +source ./tools/ci/scripts/init.sh + +do_init +run_configure $* +run_make + +source ./tools/ci/scripts/exit.sh + +exit 0 |