pandorabox-mods/test.sh

13 lines
401 B
Bash
Raw Normal View History

2019-09-09 05:46:39 -07:00
#!/bin/sh
# simple integration test
mkdir -p /tmp/mt/worlds/world
chmod 777 /tmp/mt -Rv
docker run --rm -it \
-v $(pwd)/test-minetest.conf:/etc/minetest/minetest.conf \
-v /tmp/mt:/var/lib/minetest/.minetest \
-v $(pwd):/var/lib/minetest/.minetest/worlds/world/worldmods \
2019-11-26 06:02:07 -08:00
registry.gitlab.com/minetest/minetest/server:5.1.0
2019-09-09 05:46:39 -07:00
test -f /tmp/mt/worlds/world/integration_test.json && exit 0 || exit 1