summaryrefslogtreecommitdiff
path: root/tools/ci/scripts/circleci/gcc6.sh
blob: 99e38cb0e99a03d5648f0ea0098d6a5277e809b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash

echo "CI nodes: ${CIRCLE_NODE_TOTAL}"
echo "Current node: ${CIRCLE_NODE_INDEX}"

case $CIRCLE_NODE_INDEX in
    0)
        export IMAGE=i386/debian:stretch
        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
    ;;
    1)
        export IMAGE=debian:stretch
        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
    ;;
    2)
        export IMAGE=i386/debian:stretch
        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
    ;;
    3)
        export IMAGE=debian:stretch
        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
    ;;
    *)
        echo unknown node
        exit 1
    ;;
esac