diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-07-10 01:19:54 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-07-10 01:20:35 +0300 |
commit | f7155a37bce5695743b8ebb507357d2fce061e3f (patch) | |
tree | 48e1b29cf6107d4a16ed1a56e77657eeb925c738 /tools/ci/scripts/circleci/gcc7_tests.sh | |
parent | cc8110c30fa53380a5d23af00d08c35b06b22aff (diff) | |
download | plus-f7155a37bce5695743b8ebb507357d2fce061e3f.tar.gz plus-f7155a37bce5695743b8ebb507357d2fce061e3f.tar.bz2 plus-f7155a37bce5695743b8ebb507357d2fce061e3f.tar.xz plus-f7155a37bce5695743b8ebb507357d2fce061e3f.zip |
Split circle ci scripts into separate compiler calls.
Diffstat (limited to 'tools/ci/scripts/circleci/gcc7_tests.sh')
-rwxr-xr-x | tools/ci/scripts/circleci/gcc7_tests.sh | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tools/ci/scripts/circleci/gcc7_tests.sh b/tools/ci/scripts/circleci/gcc7_tests.sh new file mode 100755 index 000000000..4c604159d --- /dev/null +++ b/tools/ci/scripts/circleci/gcc7_tests.sh @@ -0,0 +1,35 @@ +#!/bin/bash + +echo "CI nodes: ${CIRCLE_NODE_TOTAL}" +echo "Current node: ${CIRCLE_NODE_INDEX}" + +case $CIRCLE_NODE_INDEX in + 0) + export IMAGE=debian:unstable + export COMMAND="./tools/ci/jobs/gcc7_tests.sh --without-dyecmd --without-manaplusgame --without-opengl --enable-glibcdebug --with-sdl2" + export PACKAGES="gcc-7 g++-7 ${LIBS_PACKAGES} ${SDL2} valgrind" + ./tools/ci/scripts/docker_run.sh + ;; + 1) + export IMAGE=vicamo/debian:sid-i386 + export COMMAND="./tools/ci/jobs/gcc7_tests.sh --without-dyecmd --without-manaplusgame --without-opengl --enable-glibcdebug --with-sdl2" + export PACKAGES="gcc-7 g++-7 ${LIBS_PACKAGES} ${SDL2} valgrind" + ./tools/ci/scripts/docker_run.sh + ;; + 2) + export IMAGE=debian:unstable + export COMMAND="./tools/ci/jobs/gcc7_tests.sh --without-dyecmd --without-manaplusgame --without-opengl --enable-glibcdebug" + export PACKAGES="gcc-7 g++-7 ${LIBS_PACKAGES} ${SDL1} valgrind" + ./tools/ci/scripts/docker_run.sh + ;; + 3) + export IMAGE=vicamo/debian:sid-i386 + export COMMAND="./tools/ci/jobs/gcc7_tests.sh --without-dyecmd --without-manaplusgame --without-opengl" + export PACKAGES="gcc-7 g++-7 ${LIBS_PACKAGES} ${SDL1} valgrind" + ./tools/ci/scripts/docker_run.sh + ;; + *) + echo unknown node + exit 1 + ;; +esac |