From 2811c0ed70a81566985b4c25b05a57aa304a07c0 Mon Sep 17 00:00:00 2001 From: Evandro Leopoldino Goncalves Date: Sun, 8 Mar 2026 11:11:47 +0100 Subject: [PATCH 1/2] chore(ci): install test dependencies explicitly in unix workflow --- .github/workflows/unix_build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unix_build.yml b/.github/workflows/unix_build.yml index d130b65..7ce62a2 100644 --- a/.github/workflows/unix_build.yml +++ b/.github/workflows/unix_build.yml @@ -39,9 +39,12 @@ jobs: - name: dependencies run: | - make install - luarocks install luacov-coveralls + luarocks install mimetypes + luarocks install luasocket luarocks install busted + luarocks install luafilesystem + luarocks install lzlib + luarocks install luacov-coveralls make start_app - name: test From 26435b231e45bbc732d9501b0a26dee94a688d7c Mon Sep 17 00:00:00 2001 From: Evandro Leopoldino Goncalves Date: Sun, 8 Mar 2026 11:18:09 +0100 Subject: [PATCH 2/2] chore: pin lua-term for busted installation in unix workflow --- .github/workflows/unix_build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/unix_build.yml b/.github/workflows/unix_build.yml index 7ce62a2..dd25ea0 100644 --- a/.github/workflows/unix_build.yml +++ b/.github/workflows/unix_build.yml @@ -41,6 +41,7 @@ jobs: run: | luarocks install mimetypes luarocks install luasocket + luarocks install --server=https://luarocks.org/manifests/luarocks lua-term 0.3-1 luarocks install busted luarocks install luafilesystem luarocks install lzlib