Use the canonical git server name (git.teletypegames.org)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-31 19:20:51 +02:00
co-authored by Claude Fable 5
parent 3d30d4ff2f
commit ee8efc9eb6
3 changed files with 11 additions and 11 deletions
+4 -4
View File
@@ -32,16 +32,16 @@ and `-docs.zip` to the droparea, then triggers
## Builder image ## Builder image
The export step uses the TIC-80 Pro image The export step uses the TIC-80 Pro image
(`git.teletype.hu/internal/tic80pro`, built from the (`git.teletypegames.org/internal/tic80pro`, built from the
`tic80pro-dockerfile` repo). For the lint / minify / docs steps, `tic80pro-dockerfile` repo). For the lint / minify / docs steps,
`builder.Dockerfile` bakes Lua 5.4 + luacheck + ldoc + zip into `builder.Dockerfile` bakes Lua 5.4 + luacheck + ldoc + zip into
`git.teletype.hu/internal/tic80-luatools`, so the pipeline no longer `git.teletypegames.org/internal/tic80-luatools`, so the pipeline no longer
runs luarocks (and a C compiler install) on every run: runs luarocks (and a C compiler install) on every run:
```sh ```sh
docker build --platform linux/amd64 -f builder.Dockerfile \ docker build --platform linux/amd64 -f builder.Dockerfile \
-t git.teletype.hu/internal/tic80-luatools:latest . -t git.teletypegames.org/internal/tic80-luatools:latest .
docker push git.teletype.hu/internal/tic80-luatools:latest docker push git.teletypegames.org/internal/tic80-luatools:latest
``` ```
Detailed documentation lives on the wiki: `/development/tic80`. Detailed documentation lives on the wiki: `/development/tic80`.
+3 -3
View File
@@ -3,13 +3,13 @@
# run luarocks (and a C compiler install) on every run. # run luarocks (and a C compiler install) on every run.
# #
# The export step keeps using the separate TIC-80 Pro image # The export step keeps using the separate TIC-80 Pro image
# (git.teletype.hu/internal/tic80pro, built from the tic80pro-dockerfile # (git.teletypegames.org/internal/tic80pro, built from the tic80pro-dockerfile
# repo) — this image only covers the Lua tooling around it. # repo) — this image only covers the Lua tooling around it.
# #
# Build & push (the CI runner is linux/amd64): # Build & push (the CI runner is linux/amd64):
# docker build --platform linux/amd64 -f builder.Dockerfile \ # docker build --platform linux/amd64 -f builder.Dockerfile \
# -t git.teletype.hu/internal/tic80-luatools:latest . # -t git.teletypegames.org/internal/tic80-luatools:latest .
# docker push git.teletype.hu/internal/tic80-luatools:latest # docker push git.teletypegames.org/internal/tic80-luatools:latest
FROM alpine:3.22 FROM alpine:3.22
+4 -4
View File
@@ -6,22 +6,22 @@ steps:
- 'make ci-version' - 'make ci-version'
- name: lint - name: lint
image: git.teletype.hu/internal/tic80-luatools:latest image: git.teletypegames.org/internal/tic80-luatools:latest
commands: commands:
- 'make ci-lint' - 'make ci-lint'
- name: minify - name: minify
image: git.teletype.hu/internal/tic80-luatools:latest image: git.teletypegames.org/internal/tic80-luatools:latest
commands: commands:
- 'make ci-minify' - 'make ci-minify'
- name: docs - name: docs
image: git.teletype.hu/internal/tic80-luatools:latest image: git.teletypegames.org/internal/tic80-luatools:latest
commands: commands:
- 'make ci-docs' - 'make ci-docs'
- name: export - name: export
image: git.teletype.hu/internal/tic80pro:latest image: git.teletypegames.org/internal/tic80pro:latest
environment: environment:
XDG_RUNTIME_DIR: /tmp XDG_RUNTIME_DIR: /tmp
commands: commands: