]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - .gitlab-ci.yml
Merge branch 'terencehill/glowmod_color_fix' into 'develop'
[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=92bbad07902d2d045c65e54579993365
47     - HASH=$(${ENGINE} -noconfig -nohome +exec serverbench.cfg
48       | tee /dev/stderr
49       | grep '^:'
50       | grep -v '^:gamestart:'
51       | grep -v '^:anticheat:'
52       | md5sum | awk '{ print $1 }')
53     - echo 'expected:' $EXPECT
54     - echo '  actual:' $HASH
55     - test "$HASH" == "$EXPECT"
56     - exit $?
57
58 test_sv_unit:
59   stage: test
60   script:
61     - git clone --depth=1 --branch=div0-stable https://gitlab.com/xonotic/darkplaces.git darkplaces
62     - cd darkplaces && make sv-debug -j $(nproc) && export ENGINE="$PWD/darkplaces-dedicated -xonotic"
63     - cd ..
64
65     - mkdir maps && wget -O maps/gitlab-ci.bsp https://gitlab.com/xonotic/xonotic-maps.pk3dir/raw/master/maps/_init/_init.bsp
66     - make
67     - while read line; do
68         echo $line;
69         if [[ $line == "All tests OK" ]]; then exit 0; fi;
70       done < <(${ENGINE} +developer 1 +map gitlab-ci +sv_cmd runtest +exit)
71     - exit 1
72
73 # NOTE: The generated docs are incomplete - they don't contain code behind SVQC CSQC MENUQC GAMEQC ifdefs.
74 # With them added to PREDEFINED, it would take over half an hour to generate the docs and even then
75 # they might not be complete. Doxygen doesn't handle #elif and might not understand some QC definitions.
76 doxygen:  # rename to 'pages' when gitlab.com allows pages to exceed 100MiB
77   before_script:
78     - ln -s $PWD data/xonotic-data.pk3dir # is this needed?
79   stage: deploy
80   script:
81     - cd qcsrc && doxygen
82     - mv html ../public
83     - for i in {0..0}; do eval $(printf "echo \$id_rsa_%02d\n" $i) >> ~/.ssh/id_rsa_base64; done
84     - base64 --decode ~/.ssh/id_rsa_base64 > ~/.ssh/id_rsa
85     - chmod 600 ~/.ssh/id_rsa
86     - echo -e "Host *\n\tStrictHostKeyChecking no\n\tLogLevel ERROR\n" >> ~/.ssh/config
87     - git config --global user.name "Gitlab CI"
88     - git config --global user.email "<>"
89     - git clone --single-branch --depth 1 ${DEPLOY_HOST}:${DEPLOY_REPO} ~/deploy_
90     - mkdir ~/deploy && mv ~/deploy_/.git ~/deploy && rm -r ~/deploy_
91     - cp -r ../public/* ~/deploy
92     - cd ~/deploy && git add -A . && git commit -m "Deploy ${CI_BUILD_REF}" && git push origin gh-pages
93   artifacts:
94     paths:
95       - public
96   only:
97     - master