summaryrefslogblamecommitdiff
path: root/tools/ci/scripts/circleci.sh
blob: 6aeaaa10c2e8a8c53305c205237af9b7e41e06c1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                                 




                                                                                 




                                                                                                               




                                                                                                               
                                                                                                                                               



                                                                       




                                                                                                                                               


                                                                                                                                   




                                                                                                                                   












                                                                                 




                                                                                 




                                                                                                               




                                                                                                               
                                                                                                                                               






                                                                                                                                   




                                                                                                                                   












                                                                                             




                                                                                             




                                                                                                                           




                                                                                                                           
                                                                                                                                                           



                                                                       




                                                                                                                                                           


                                                                                                                                               




                                                                                                                                               












                                                                                             




                                                                                             




                                                                                                                           




                                                                                                                           
                                                                                                                                                           






                                                                                                                                               




                                                                                                                                               





                         
#!/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/gcc5.sh --enable-werror --without-opengl"
        export PACKAGES="gcc-5 g++-5 ${LIBS_PACKAGES} ${SDL1}"
        ./tools/ci/scripts/docker_run.sh

        export IMAGE=debian:unstable
        export COMMAND="./tools/ci/jobs/gcc6.sh --enable-werror --without-opengl"
        export PACKAGES="gcc-6 g++-6 ${LIBS_PACKAGES} ${SDL1}"
        ./tools/ci/scripts/docker_run.sh

        export IMAGE=debian:unstable
        export COMMAND="./tools/ci/jobs/gcc7.sh --enable-werror --without-opengl"
        export PACKAGES="gcc-7 g++-7 ${LIBS_PACKAGES} ${SDL1}"
        ./tools/ci/scripts/docker_run.sh

        export IMAGE=debian:unstable
        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

        export IMAGE=debian:unstable
        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

        export IMAGE=debian:unstable
        export COMMAND="./tools/ci/jobs/gcc6_sanitize_tests.sh --enable-unittests=yes --without-dyecmd --without-manaplusgame --without-opengl"
        export PACKAGES="gcc-6 g++-6 ${LIBS_PACKAGES} ${SDL1} valgrind"
        ./tools/ci/scripts/docker_run.sh

        export IMAGE=debian:unstable
        export COMMAND="./tools/ci/jobs/gcc7_sanitize_tests.sh --enable-unittests=yes --without-dyecmd --without-manaplusgame --without-opengl"
        export PACKAGES="gcc-7 g++-7 ${LIBS_PACKAGES} ${SDL1} valgrind"
        ./tools/ci/scripts/docker_run.sh

        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

        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
    ;;
    1)
        export IMAGE=vicamo/debian:sid-i386
        export COMMAND="./tools/ci/jobs/gcc5.sh --enable-werror --without-opengl"
        export PACKAGES="gcc-5 g++-5 ${LIBS_PACKAGES} ${SDL1}"
        ./tools/ci/scripts/docker_run.sh

        export IMAGE=vicamo/debian:sid-i386
        export COMMAND="./tools/ci/jobs/gcc6.sh --enable-werror --without-opengl"
        export PACKAGES="gcc-6 g++-6 ${LIBS_PACKAGES} ${SDL1}"
        ./tools/ci/scripts/docker_run.sh

        export IMAGE=vicamo/debian:sid-i386
        export COMMAND="./tools/ci/jobs/gcc7.sh --enable-werror --without-opengl"
        export PACKAGES="gcc-7 g++-7 ${LIBS_PACKAGES} ${SDL1}"
        ./tools/ci/scripts/docker_run.sh

        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

        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

        export IMAGE=vicamo/debian:sid-i386
        export COMMAND="./tools/ci/jobs/gcc6_sanitize_tests.sh --enable-unittests=yes --without-dyecmd --without-manaplusgame --without-opengl"
        export PACKAGES="gcc-6 g++-6 ${LIBS_PACKAGES} ${SDL1} valgrind"
        ./tools/ci/scripts/docker_run.sh

        export IMAGE=vicamo/debian:sid-i386
        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

        export IMAGE=vicamo/debian:sid-i386
        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
    ;;
    2)
        export IMAGE=debian:unstable
        export COMMAND="./tools/ci/jobs/gcc5.sh --enable-werror --without-opengl --with-sdl2"
        export PACKAGES="gcc-5 g++-5 ${LIBS_PACKAGES} ${SDL2}"
        ./tools/ci/scripts/docker_run.sh

        export IMAGE=debian:unstable
        export COMMAND="./tools/ci/jobs/gcc6.sh --enable-werror --without-opengl --with-sdl2"
        export PACKAGES="gcc-6 g++-6 ${LIBS_PACKAGES} ${SDL2}"
        ./tools/ci/scripts/docker_run.sh

        export IMAGE=debian:unstable
        export COMMAND="./tools/ci/jobs/gcc7.sh --enable-werror --without-opengl --with-sdl2"
        export PACKAGES="gcc-7 g++-7 ${LIBS_PACKAGES} ${SDL2}"
        ./tools/ci/scripts/docker_run.sh

        export IMAGE=debian:unstable
        export COMMAND="./tools/ci/jobs/gcc6_tests.sh --without-dyecmd --without-manaplusgame --without-opengl --with-sdl2"
        export PACKAGES="gcc-6 g++-6 ${LIBS_PACKAGES} ${SDL2} valgrind"
        ./tools/ci/scripts/docker_run.sh

        export IMAGE=debian:unstable
        export COMMAND="./tools/ci/jobs/gcc7_tests.sh --without-dyecmd --without-manaplusgame --without-opengl --with-sdl2"
        export PACKAGES="gcc-7 g++-7 ${LIBS_PACKAGES} ${SDL2} valgrind"
        ./tools/ci/scripts/docker_run.sh

        export IMAGE=debian:unstable
        export COMMAND="./tools/ci/jobs/gcc6_sanitize_tests.sh --enable-unittests=yes --without-dyecmd --without-manaplusgame --without-opengl --with-sdl2"
        export PACKAGES="gcc-6 g++-6 ${LIBS_PACKAGES} ${SDL2} valgrind"
        ./tools/ci/scripts/docker_run.sh

        export IMAGE=debian:unstable
        export COMMAND="./tools/ci/jobs/gcc7_sanitize_tests.sh --enable-unittests=yes --without-dyecmd --without-manaplusgame --without-opengl --with-sdl2"
        export PACKAGES="gcc-7 g++-7 ${LIBS_PACKAGES} ${SDL2} valgrind"
        ./tools/ci/scripts/docker_run.sh

        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

        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
    ;;
    3)
        export IMAGE=vicamo/debian:sid-i386
        export COMMAND="./tools/ci/jobs/gcc5.sh --enable-werror --without-opengl --with-sdl2"
        export PACKAGES="gcc-5 g++-5 ${LIBS_PACKAGES} ${SDL2}"
        ./tools/ci/scripts/docker_run.sh

        export IMAGE=vicamo/debian:sid-i386
        export COMMAND="./tools/ci/jobs/gcc6.sh --enable-werror --without-opengl --with-sdl2"
        export PACKAGES="gcc-6 g++-6 ${LIBS_PACKAGES} ${SDL2}"
        ./tools/ci/scripts/docker_run.sh

        export IMAGE=vicamo/debian:sid-i386
        export COMMAND="./tools/ci/jobs/gcc7.sh --enable-werror --without-opengl --with-sdl2"
        export PACKAGES="gcc-7 g++-7 ${LIBS_PACKAGES} ${SDL2}"
        ./tools/ci/scripts/docker_run.sh

        export IMAGE=vicamo/debian:sid-i386
        export COMMAND="./tools/ci/jobs/gcc6_tests.sh --without-dyecmd --without-manaplusgame --without-opengl --with-sdl2"
        export PACKAGES="gcc-6 g++-6 ${LIBS_PACKAGES} ${SDL2} valgrind"
        ./tools/ci/scripts/docker_run.sh

        export IMAGE=vicamo/debian:sid-i386
        export COMMAND="./tools/ci/jobs/gcc7_tests.sh --without-dyecmd --without-manaplusgame --without-opengl --with-sdl2"
        export PACKAGES="gcc-7 g++-7 ${LIBS_PACKAGES} ${SDL2} valgrind"
        ./tools/ci/scripts/docker_run.sh

        export IMAGE=vicamo/debian:sid-i386
        export COMMAND="./tools/ci/jobs/gcc6_sanitize_tests.sh --enable-unittests=yes --without-dyecmd --without-manaplusgame --without-opengl --with-sdl2"
        export PACKAGES="gcc-6 g++-6 ${LIBS_PACKAGES} ${SDL2} valgrind"
        ./tools/ci/scripts/docker_run.sh

        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

        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
    ;;
    *)
        echo unknown node
        exit 1
    ;;
esac