summaryrefslogtreecommitdiff
path: root/tools/ci/scripts/circleci1.sh
blob: 13ea96bdfaf6ec70b0da09cb77e46bc047496225 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/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
    ;;
    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
    ;;
    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
    ;;
    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
    ;;
    *)
        echo unknown node
        exit 1
    ;;
esac