]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - .gitlab-ci.yml
Gitlab CI: another attempt to fix workflow rules
[xonotic/xonotic-data.pk3dir.git] / .gitlab-ci.yml
1 workflow:
2   script: echo "commit message: $CI_COMMIT_MESSAGE"
3   rules:
4     - if: $CI_COMMIT_MESSAGE =~ /Transifex autosync/
5       when: never
6     - when: always
7
8 before_script:
9   - ln -s $PWD data/xonotic-data.pk3dir
10
11   - git clone --depth=1 --branch=master https://gitlab.com/xonotic/gmqcc.git gmqcc
12   - cd gmqcc && make -j $(nproc) && export QCC="$PWD/gmqcc"
13   - cd ..
14
15 report_cloc:
16   stage: test
17   script:
18     - cloc --force-lang-def=qcsrc/tools/cloc.txt --sql 1 --sql-project xonotic qcsrc | sqlite3 code.db
19     - sqlite3 code.db 'select file,nCode from t where nCode > 1000 order by nBlank+nComment+nCode desc'
20
21 test_compilation_units:
22   stage: test
23   script:
24     - ./qcsrc/tools/compilationunits.sh
25
26 test_sv_game:
27   stage: test
28   script:
29     - git clone --depth=1 --branch=div0-stable https://gitlab.com/xonotic/darkplaces.git darkplaces
30     - cd darkplaces && make sv-debug -j $(nproc) && export ENGINE="$PWD/darkplaces-dedicated -xonotic"
31     - cd ..
32
33     - mkdir -p data/maps
34     - wget -O data/stormkeep.pk3 http://beta.xonotic.org/autobuild-bsp/latest/stormkeep.pk3
35     - wget -O data/maps/stormkeep.mapinfo https://gitlab.com/xonotic/xonotic-maps.pk3dir/raw/master/maps/stormkeep.mapinfo
36     - wget -O data/maps/stormkeep.waypoints https://gitlab.com/xonotic/xonotic-maps.pk3dir/raw/master/maps/stormkeep.waypoints
37     - wget -O data/maps/stormkeep.waypoints.cache https://gitlab.com/xonotic/xonotic-maps.pk3dir/raw/master/maps/stormkeep.waypoints.cache
38     - make
39     - EXPECT=92bbad07902d2d045c65e54579993365
40     - HASH=$(${ENGINE} -noconfig -nohome +exec serverbench.cfg
41       | tee /dev/stderr
42       | grep '^:'
43       | grep -v '^:gamestart:'
44       | grep -v '^:anticheat:'
45       | md5sum | awk '{ print $1 }')
46     - echo 'expected:' $EXPECT
47     - echo '  actual:' $HASH
48     - test "$HASH" == "$EXPECT"
49     - exit $?
50
51 test_sv_unit:
52   stage: test
53   script:
54     - git clone --depth=1 --branch=div0-stable https://gitlab.com/xonotic/darkplaces.git darkplaces
55     - cd darkplaces && make sv-debug -j $(nproc) && export ENGINE="$PWD/darkplaces-dedicated -xonotic"
56     - cd ..
57
58     - mkdir maps && wget -O maps/gitlab-ci.bsp https://gitlab.com/xonotic/xonotic-maps.pk3dir/raw/master/maps/_init/_init.bsp
59     - make
60     - while read line; do
61         echo $line;
62         if [[ $line == "All tests OK" ]]; then exit 0; fi;
63       done < <(${ENGINE} +developer 1 +map gitlab-ci +sv_cmd runtest +exit)
64     - exit 1
65
66 # NOTE: The generated docs are incomplete - they don't contain code behind SVQC CSQC MENUQC GAMEQC ifdefs.
67 # With them added to PREDEFINED, it would take over half an hour to generate the docs and even then
68 # they might not be complete. Doxygen doesn't handle #elif and might not understand some QC definitions.
69 doxygen:  # rename to 'pages' when gitlab.com allows pages to exceed 100MiB
70   stage: deploy
71   script:
72     - cd qcsrc && doxygen
73     - mv html ../public
74     - for i in {0..0}; do eval $(printf "echo \$id_rsa_%02d\n" $i) >> ~/.ssh/id_rsa_base64; done
75     - base64 --decode ~/.ssh/id_rsa_base64 > ~/.ssh/id_rsa
76     - chmod 600 ~/.ssh/id_rsa
77     - echo -e "Host *\n\tStrictHostKeyChecking no\n\tLogLevel ERROR\n" >> ~/.ssh/config
78     - git config --global user.name "Gitlab CI"
79     - git config --global user.email "<>"
80     - git clone --single-branch --depth 1 ${DEPLOY_HOST}:${DEPLOY_REPO} ~/deploy_
81     - mkdir ~/deploy && mv ~/deploy_/.git ~/deploy && rm -r ~/deploy_
82     - cp -r ../public/* ~/deploy
83     - cd ~/deploy && git add -A . && git commit -m "Deploy ${CI_BUILD_REF}" && git push origin gh-pages
84   artifacts:
85     paths:
86       - public
87   only:
88     - master