mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-14 22:40:41 +01:00
22 lines
544 B
Bash
22 lines
544 B
Bash
|
#!/bin/sh
|
||
|
# simple integration test
|
||
|
|
||
|
CFG=/tmp/minetest.conf
|
||
|
MTDIR=/tmp/mt
|
||
|
WORLDDIR=${MTDIR}/worlds/world
|
||
|
|
||
|
# TODO: pipeworks / basic_materials
|
||
|
cat <<EOF > ${CFG}
|
||
|
enable_technic_integration_test = true
|
||
|
EOF
|
||
|
|
||
|
mkdir -p ${WORLDDIR}
|
||
|
chmod 777 ${MTDIR} -R
|
||
|
docker run --rm -i \
|
||
|
-v ${CFG}:/etc/minetest/minetest.conf:ro \
|
||
|
-v ${MTDIR}:/var/lib/minetest/.minetest \
|
||
|
-v $(pwd):/var/lib/minetest/.minetest/worlds/world/worldmods/technic \
|
||
|
registry.gitlab.com/minetest/minetest/server:5.0.1
|
||
|
|
||
|
test -f ${WORLDDIR}/integration_test.json && exit 0 || exit 1
|