summaryrefslogblamecommitdiff
path: root/tools/ci/scripts/circleci/gcc6_sanitize_tests.sh
blob: c28ed12b1373a3fdf9ddbfba1e70f9c62e1a6a6d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                                                                                                           
                    







                                                                                                                                               
                    





                         
#!/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/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
    ;;
    1)
        echo nothing
    ;;
    2)
        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
    ;;
    3)
        echo nothing
    ;;
    *)
        echo unknown node
        exit 1
    ;;
esac