X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=.gitlab-ci.yml;h=ad6e329af8cc93303ec534b519aedfa561506e7f;hb=b0c2a2d4ced4c0be25796d273376bcb975697318;hp=3344399d46e9cbf6a2788ea2d9f71ee140e35ecd;hpb=c03e78bfaed73454abe0fa9cf29a879e55aeb036;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3344399d4..ad6e329af 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,25 +10,50 @@ before_script: - export QCC="$PWD/gmqcc/gmqcc" - ln -s $PWD data/xonotic-data.pk3dir - - mkdir maps && wget -O maps/gitlab-ci.bsp https://gitlab.com/xonotic/xonotic-maps.pk3dir/raw/master/maps/_init/_init.bsp -build: +test_sv_unit: + stage: test script: + - mkdir maps && wget -O maps/gitlab-ci.bsp https://gitlab.com/xonotic/xonotic-maps.pk3dir/raw/master/maps/_init/_init.bsp - make - while read line; do echo $line; if [[ $line == "All tests OK" ]]; then exit 0; fi; done < <(${ENGINE} +developer 1 +map gitlab-ci +sv_cmd runtest +exit) - exit 1 - artifacts: - paths: - - csprogs.dat -pages: +test_sv_game: + stage: test + script: + - wget -O data/g-23.pk3 http://beta.xonotic.org/autobuild-bsp/latest/g-23.pk3 + - make + - EXPECT=cf9b6ac0ea575904a75099afd1b71124 + - HASH=$(${ENGINE} -noconfig -nohome +exec serverbench.cfg + | tee /dev/stderr + | grep '^:' + | grep -v '^:gamestart:' + | grep -v '^:anticheat:' + | md5sum | awk '{ print $1 }') + - echo 'expected:' $EXPECT + - echo ' actual:' $HASH + - test "$HASH" == "$EXPECT" + - exit $? + +doxygen: # rename to 'pages' when gitlab.com allows pages to exceed 100MiB stage: deploy script: - - cd qcsrc && doxygen >/dev/null + - cd qcsrc && doxygen - mv html ../public + - for i in {0..0}; do eval $(printf "echo \$id_rsa_%02d\n" $i) >> ~/.ssh/id_rsa_base64; done + - base64 --decode ~/.ssh/id_rsa_base64 > ~/.ssh/id_rsa + - chmod 600 ~/.ssh/id_rsa + - echo -e "Host *\n\tStrictHostKeyChecking no\n\tLogLevel ERROR\n" >> ~/.ssh/config + - git config --global user.name "Gitlab CI" + - git config --global user.email "<>" + - git clone --single-branch --depth 1 ${DEPLOY_HOST}:${DEPLOY_REPO} ~/deploy_ + - mkdir ~/deploy && mv ~/deploy_/.git ~/deploy && rm -r ~/deploy_ + - cp -r ../public/* ~/deploy + - cd ~/deploy && git add -A . && git commit -m "Update" && git push origin gh-pages artifacts: paths: - public