From b3b6e8d4de12e9938fecdafdb36ec15c2d249ff8 Mon Sep 17 00:00:00 2001 From: JustVugg Date: Wed, 22 Jul 2026 08:14:28 +0200 Subject: [PATCH] release: build and copy the engine under its real name (glm -> colibri) The #391 rename left release.yml building 'make glm' (an alias that now produces 'colibri') and then asserting/copying 'c/glm', which no longer exists. CI never catches this: only a tag push runs this workflow, so the v1.1.0 tag build failed on macOS at 'ls -lh glm' with the other jobs cancelled and the release skipped. Co-Authored-By: Claude Fable 5 --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a556b80b..638dc7f0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,8 +52,8 @@ jobs: - name: Build engine run: | cd c - make glm ${{ matrix.make_args }} - ls -lh glm${{ matrix.ext }} + make colibri ${{ matrix.make_args }} + ls -lh colibri${{ matrix.ext }} - name: Package run: | @@ -64,7 +64,7 @@ jobs: # colibri--.exe made every downloaded archive fail with # "engine is not built. Run: coli build" -- with the engine sitting right there. # The version lives in the ARCHIVE name, which is where a downloader looks for it. - cp c/glm${{ matrix.ext }} dist/colibri${{ matrix.ext }} + cp c/colibri${{ matrix.ext }} dist/colibri${{ matrix.ext }} cp c/coli dist/ cp c/version.py dist/ cp c/openai_server.py dist/