From: bones_was_here Date: Fri, 2 Dec 2022 14:58:26 +0000 (+1000) Subject: pipeline: don't rename _init.bsp to gitlab-ci.bsp, it causes confusion X-Git-Tag: xonotic-v0.8.6~278 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=35849c544117829747b66a9b1def520a6d2c6ec0;p=xonotic%2Fxonotic-data.pk3dir.git pipeline: don't rename _init.bsp to gitlab-ci.bsp, it causes confusion --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b6735a471..62a9fa393 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -52,15 +52,15 @@ test_sv_game: - make qc || exit 1 - mkdir -p data/maps - - wget -nv -O data/maps/gitlab-ci.bsp https://gitlab.com/xonotic/xonotic-maps.pk3dir/raw/master/maps/_init/_init.bsp + - wget -nv -O data/maps/_init.bsp https://gitlab.com/xonotic/xonotic-maps.pk3dir/raw/master/maps/_init/_init.bsp - while read LINE; do echo $LINE; [ "$LINE" = "All tests OK" ] && PASS=1; - done < <(${ENGINE} +developer 1 +map gitlab-ci +sv_cmd runtest +wait +quit) + done < <(${ENGINE} +developer 1 +map _init +sv_cmd runtest +wait +quit) - test "$PASS" = "1" || { echo 'sv_cmd runtest failed!'; exit 1; } - - ${ENGINE} +map gitlab-ci +sv_cmd dumpnotifs +wait +quit + - ${ENGINE} +map _init +sv_cmd dumpnotifs +wait +quit - diff notifications.cfg data/data/notifications_dump.cfg || { echo 'Please update notifications.cfg using `dumpnotifs`!'; exit 1; }