summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2020-05-30 03:30:46 +0300
committerAndrei Karas <akaras@inbox.ru>2020-05-30 03:30:46 +0300
commit92f44bbb86c6a924caeaf5d391a560da2a9010c8 (patch)
treedb684ce489eae8e90a0b3d787349c5dc8b27f9f1
parent71e6792ce978527161c77dbc8807ca3a16ed7900 (diff)
downloadplus-92f44bbb86c6a924caeaf5d391a560da2a9010c8.tar.gz
plus-92f44bbb86c6a924caeaf5d391a560da2a9010c8.tar.bz2
plus-92f44bbb86c6a924caeaf5d391a560da2a9010c8.tar.xz
plus-92f44bbb86c6a924caeaf5d391a560da2a9010c8.zip
Update image names in circleci scripts
-rwxr-xr-xtools/ci/scripts/circleci/gcc7.sh8
-rwxr-xr-xtools/ci/scripts/circleci/gcc7_sanitize_tests.sh4
-rwxr-xr-xtools/ci/scripts/circleci/gcc7_tests.sh8
3 files changed, 10 insertions, 10 deletions
diff --git a/tools/ci/scripts/circleci/gcc7.sh b/tools/ci/scripts/circleci/gcc7.sh
index 6a2ccd6a6..a56f8bb42 100755
--- a/tools/ci/scripts/circleci/gcc7.sh
+++ b/tools/ci/scripts/circleci/gcc7.sh
@@ -5,25 +5,25 @@ echo "Current node: ${CIRCLE_NODE_INDEX}"
case $CIRCLE_NODE_INDEX in
0)
- export IMAGE=debian:unstable
+ export IMAGE=debian:buster
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 IMAGE=i386/debian:buster
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 IMAGE=debian:buster
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 IMAGE=i386/debian:buster
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
diff --git a/tools/ci/scripts/circleci/gcc7_sanitize_tests.sh b/tools/ci/scripts/circleci/gcc7_sanitize_tests.sh
index 10579b1a3..4757fb0b1 100755
--- a/tools/ci/scripts/circleci/gcc7_sanitize_tests.sh
+++ b/tools/ci/scripts/circleci/gcc7_sanitize_tests.sh
@@ -8,7 +8,7 @@ case $CIRCLE_NODE_INDEX in
echo nothing
;;
1)
- export IMAGE=debian:unstable
+ export IMAGE=debian:buster
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
@@ -17,7 +17,7 @@ case $CIRCLE_NODE_INDEX in
echo nothing
;;
3)
- export IMAGE=debian:unstable
+ export IMAGE=debian:buster
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
diff --git a/tools/ci/scripts/circleci/gcc7_tests.sh b/tools/ci/scripts/circleci/gcc7_tests.sh
index 4c604159d..8679f366c 100755
--- a/tools/ci/scripts/circleci/gcc7_tests.sh
+++ b/tools/ci/scripts/circleci/gcc7_tests.sh
@@ -5,25 +5,25 @@ echo "Current node: ${CIRCLE_NODE_INDEX}"
case $CIRCLE_NODE_INDEX in
0)
- export IMAGE=debian:unstable
+ export IMAGE=debian:buster
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
;;
1)
- export IMAGE=vicamo/debian:sid-i386
+ export IMAGE=i386/debian:buster
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
;;
2)
- export IMAGE=debian:unstable
+ export IMAGE=debian:buster
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
;;
3)
- export IMAGE=vicamo/debian:sid-i386
+ export IMAGE=i386/debian:buster
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