worstblockgame/.gitlab-ci.yml

23 lines
510 B
YAML
Raw Normal View History

2020-08-13 02:55:01 -07:00
default:
image: debian:stretch-slim
before_script:
- apt-get update
- apt-get install -qq luarocks zsh git
- luarocks install moonscript
- mkdir tmp
- cd tmp
- wget https://github.com/minetest/minetest_game/archive/5.3.0.tar.gz
2020-08-13 03:00:24 -07:00
- tar -xf 5.3.0.tar.gz
- cd ..
2020-08-13 02:55:01 -07:00
after_script:
- rm -rf tmp
2020-08-13 02:46:17 -07:00
build:
script:
2020-08-13 03:08:26 -07:00
- MTG_PATH=tmp/minetest_game-5.3.0 ./build.sh
2020-08-13 02:55:01 -07:00
- tar --exclude tmp/ --exclude-vcs -czf wbg.tar.gz *
artifacts:
2020-08-13 03:17:18 -07:00
expire_in: never
2020-08-13 03:19:48 -07:00
paths:
- "*"