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