Revert builder-image changes; keep tic80pro:latest as-is

The TIC-80 pipeline already runs its export in the tic80pro image and
the lint/minify/docs steps stay on plain alpine — the tic80-luatools
builder image and the registry rename were not wanted here.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-31 19:41:03 +02:00
co-authored by Claude Fable 5
parent ee8efc9eb6
commit 3416a68c1a
3 changed files with 14 additions and 43 deletions
+14 -4
View File
@@ -6,22 +6,32 @@ steps:
- 'make ci-version'
- name: lint
image: git.teletypegames.org/internal/tic80-luatools:latest
image: alpine
commands:
- 'apk add --no-cache make lua5.4 lua5.4-dev luarocks gcc musl-dev'
- 'ln -sf /usr/bin/lua5.4 /usr/bin/lua'
- 'ln -sf /usr/bin/luarocks-5.4 /usr/bin/luarocks'
- 'luarocks install luacheck'
- 'make ci-lint'
- name: minify
image: git.teletypegames.org/internal/tic80-luatools:latest
image: alpine
commands:
- 'apk add --no-cache make lua5.4 curl'
- 'ln -sf /usr/bin/lua5.4 /usr/bin/lua'
- 'make ci-minify'
- name: docs
image: git.teletypegames.org/internal/tic80-luatools:latest
image: alpine
commands:
- 'apk add --no-cache make lua5.4 lua5.4-dev luarocks gcc musl-dev zip'
- 'ln -sf /usr/bin/lua5.4 /usr/bin/lua'
- 'ln -sf /usr/bin/luarocks-5.4 /usr/bin/luarocks'
- 'luarocks install ldoc'
- 'make ci-docs'
- name: export
image: git.teletypegames.org/internal/tic80pro:latest
image: git.teletype.hu/internal/tic80pro:latest
environment:
XDG_RUNTIME_DIR: /tmp
commands: