blob: 5234336d3b818957bb2d1ff40eb62d1fa81ac14c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
image: debian/stable
packages:
- git
- lua5.1
- luarocks
- curl
- minetest-server
- unzip
- wget
- lua-busted
- luajit
sources :
- https://git.sr.ht/~gpcf/advtrains
artifacts:
- advtrains.luacov.report.out
- advtrains_interlocking.luacov.report.out
tasks:
- install_mineunit : |
for i in {busted,luacov}; do
luarocks install --local --lua-version 5.1 $i >/dev/null
done
luarocks install --local --lua-version 5.1 --server=https://luarocks.org/dev mineunit
- run_unit_tests : |
cd advtrains/serialize_lib
~/.luarocks/bin/busted
for i in {advtrains,advtrains_interlocking}; do
cd ../$i
~/.luarocks/bin/mineunit -c
~/.luarocks/bin/mineunit -r
sed -n '/^File/,$p' luacov.report.out
mv luacov.report.out ~/$i.luacov.report.out
done
- install_mt_game : |
curl -L https://github.com/minetest/minetest_game/archive/master.zip -o master.zip
mkdir -p .minetest/games/
cd .minetest/games
unzip ../../master.zip
mv minetest_game-master minetest_game
- install_test_world: |
mkdir -p .minetest/worlds/
curl https://lifomaps.de/advtrains-test/testworld.tar.gz -o ~/testworld.tar.gz
cd .minetest/worlds/
tar xf ../../testworld.tar.gz
- activate_test_env: |
cd advtrains
git merge --no-commit origin/luaatcdebug
- install_advtrains : |
mkdir .minetest/mods
cp -r advtrains .minetest/mods
cd .minetest/mods
git clone https://git.bananach.space/basic_trains.git/
- run_test_world: |
echo "bind_address = 127.0.0.1" > minetest.conf
minetestserver --port 31111 --gameid minetest_game --config ~/minetest.conf --world ~/.minetest/worlds/advtrains_testworld --logfile ~/minetest.log
- test_po_files : |
cd advtrains/advtrains
for f in po/*.po; do
luajit -e 'require("poconvert").from_string("advtrains", io.input():read("*a"))' < $f
done
|