luaocc/.gitlab-ci.yml

12 lines
364 B
YAML

test:
stage: test
image: archlinux
script:
- pacman -Syu --noconfirm luarocks gcc opencc lua51 lua52 lua53 lua
- for i in 5.1 5.2 5.3 5.4; do
- luarocks install --lua-version $i busted
- luarocks make --lua-version $i
- busted busted_unittest.lua
- luarocks remove --lua-version $i busted
- done