aboutsummaryrefslogtreecommitdiff
path: root/.build.yml
blob: 54768a985818b2f40d804bd1b40ec44971b6e7e0 (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
image: debian/stable
packages: 
- git
- lua5.1
- luarocks
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