* add 5.10

* use `command` instead of entrypoint (uses the correct luanti/minetest binary)

* use latest luanti container for automerge test and as docker-compose default

* drop 5.6 from ci

---------

Co-authored-by: BuckarooBanzay <BuckarooBanzay@users.noreply.github.com>
This commit is contained in:
wsor4035 2024-11-29 15:23:53 -05:00 committed by GitHub
parent 6fae6429e2
commit 58c6bff13a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ jobs:
- name: test with latest engine
run: docker compose up --exit-code-from testserver
env:
ENGINE_IMAGE: "ghcr.io/minetest-hosting/minetest-docker:main"
ENGINE_IMAGE: "ghcr.io/minetest/minetest:latest"
- name: fetch metadata
id: metadata

View File

@ -10,11 +10,11 @@ jobs:
strategy:
matrix:
ENGINE_IMAGE:
- registry.gitlab.com/minetest/minetest/server:5.6.0
- registry.gitlab.com/minetest/minetest/server:5.7.0
- ghcr.io/minetest-hosting/minetest-docker:5.8.0
- ghcr.io/minetest/minetest:5.9.0
- ghcr.io/minetest/minetest:5.9.1
- ghcr.io/minetest/minetest:5.10.0
steps:
- uses: actions/checkout@v4

View File

@ -2,8 +2,8 @@ version: "3.6"
services:
testserver:
image: ${ENGINE_IMAGE:-ghcr.io/minetest-hosting/minetest-docker:5.8.0}
entrypoint: "minetestserver --config /minetest.conf"
image: ${ENGINE_IMAGE:-ghcr.io/minetest/minetest:latest}
command: ["--config", "/minetest.conf"]
user: root
volumes:
- "./:/root/.minetest/games/dreambuilder_game/"