diff --git a/.github/workflows/mtinfo.yml b/.github/workflows/mtinfo.yml deleted file mode 100644 index ec57cb30..00000000 --- a/.github/workflows/mtinfo.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: mtinfo - -on: [push, pull_request] - -jobs: - build: - - runs-on: ubuntu-20.04 - - steps: - - uses: actions/checkout@v2 - - - name: generate - run: ./generate-mtinfo.sh - - - name: deploy - if: github.ref == 'refs/heads/master' - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./output diff --git a/README.md b/README.md index ad0eddd4..27a46f4d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,6 @@ A mod for [minetest](http://www.minetest.net) ![integration-test](https://github.com/mt-mods/technic/workflows/integration-test/badge.svg) ![luacheck](https://github.com/mt-mods/technic/workflows/luacheck/badge.svg) ![mineunit](https://github.com/mt-mods/technic/workflows/mineunit/badge.svg) -![mtinfo](https://github.com/mt-mods/technic/workflows/mtinfo/badge.svg) ![](https://byob.yarr.is/mt-mods/technic/coverage) [![License](https://img.shields.io/badge/license-LGPLv2.0%2B-purple.svg)](https://www.gnu.org/licenses/old-licenses/lgpl-2.0.en.html) @@ -39,7 +38,6 @@ their own manuals: * [Pipeworks Documentation](https://github.com/mt-mods/pipeworks/-/wikis/home) * [Moreores Forum Post](https://forum.minetest.net/viewtopic.php?t=549) * [Basic materials Repository](https://github.com/mt-mods/basic_materials) -* [mtinfo generated documentation](https://mt-mods.github.io/technic/#/mods/technic/items) Recipes for constructable items in technic are generally not guessable, and are also not specifically documented here. You should use a diff --git a/generate-mtinfo.sh b/generate-mtinfo.sh deleted file mode 100755 index 533ef2c2..00000000 --- a/generate-mtinfo.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh - -# prepare config -CONFIG=/tmp/technic_minetest.conf -echo "mtinfo.enabled = true" > ${CONFIG} -echo "mtinfo.autoshutdown = true" >> ${CONFIG} -echo "moreblocks.stairsplus_in_creative_inventory = false" >> ${CONFIG} - -# prepare dependent mods -WORLDMODS_DIR=/tmp/technic_worldmods -git clone --recurse-submodules --depth=1 https://github.com/mt-mods/basic_materials.git ${WORLDMODS_DIR}/basic_materials -git clone --depth=1 https://github.com/mt-mods/pipeworks.git ${WORLDMODS_DIR}/pipeworks -git clone --depth=1 https://github.com/mt-mods/unifieddyes.git ${WORLDMODS_DIR}/unifieddyes -git clone --depth=1 https://github.com/minetest-mods/moreblocks.git ${WORLDMODS_DIR}/moreblocks -git clone --depth 1 https://github.com/minetest-mods/moreores.git ${WORLDMODS_DIR}/moreores -git clone --depth=1 https://github.com/BuckarooBanzay/mtinfo.git ${WORLDMODS_DIR}/mtinfo -cp . ${WORLDMODS_DIR}/technic -R - -# start container with mtinfo -docker run --rm -i \ - --user root \ - -v ${CONFIG}:/etc/minetest/minetest.conf:ro \ - -v ${WORLDMODS_DIR}/:/root/.minetest/worlds/world/worldmods \ - -v $(pwd)/output:/root/.minetest/worlds/world/mtinfo \ - registry.gitlab.com/minetest/minetest/server:5.3.0 - -test -f $(pwd)/output/index.html || exit 1 -test -f $(pwd)/output/data/items.js || exit 1 -test -d $(pwd)/output/textures || exit 1