From f7155a37bce5695743b8ebb507357d2fce061e3f Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 10 Jul 2017 01:19:54 +0300 Subject: Split circle ci scripts into separate compiler calls. --- tools/ci/scripts/circleci/gcc6_tests.sh | 35 +++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 tools/ci/scripts/circleci/gcc6_tests.sh (limited to 'tools/ci/scripts/circleci/gcc6_tests.sh') diff --git a/tools/ci/scripts/circleci/gcc6_tests.sh b/tools/ci/scripts/circleci/gcc6_tests.sh new file mode 100755 index 000000000..ec19a0e19 --- /dev/null +++ b/tools/ci/scripts/circleci/gcc6_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=vicamo/debian:sid-i386 + export COMMAND="./tools/ci/jobs/gcc6_tests.sh --without-dyecmd --without-manaplusgame --without-opengl" + export PACKAGES="gcc-6 g++-6 ${LIBS_PACKAGES} ${SDL1} valgrind" + ./tools/ci/scripts/docker_run.sh + ;; + 1) + export IMAGE=debian:unstable + export COMMAND="./tools/ci/jobs/gcc6_tests.sh --without-dyecmd --without-manaplusgame --without-opengl --enable-glibcdebug --with-sdl2" + export PACKAGES="gcc-6 g++-6 ${LIBS_PACKAGES} ${SDL2} valgrind" + ./tools/ci/scripts/docker_run.sh + ;; + 2) + export IMAGE=vicamo/debian:sid-i386 + export COMMAND="./tools/ci/jobs/gcc6_tests.sh --without-dyecmd --without-manaplusgame --without-opengl --enable-glibcdebug --with-sdl2" + export PACKAGES="gcc-6 g++-6 ${LIBS_PACKAGES} ${SDL2} valgrind" + ./tools/ci/scripts/docker_run.sh + ;; + 3) + export IMAGE=debian:unstable + export COMMAND="./tools/ci/jobs/gcc6_tests.sh --without-dyecmd --without-manaplusgame --without-opengl --enable-glibcdebug" + export PACKAGES="gcc-6 g++-6 ${LIBS_PACKAGES} ${SDL1} valgrind" + ./tools/ci/scripts/docker_run.sh + ;; + *) + echo unknown node + exit 1 + ;; +esac -- cgit v1.2.3-60-g2f50