From c7f2cb5b0ed997c11b178979634dae2a68d20395 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20L=C3=B6tscher?= Date: Fri, 20 Dec 2024 18:04:59 +0100 Subject: [PATCH 1/2] Stop testing with luajit-2.1.0-beta on MacOS and Ubuntu in view of missing release tarball See https://github.com/leafo/gh-actions-lua/issues/49 We still test with luajit-openresty. --- .github/workflows/ci.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d5a4e3..5687a93 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: strategy: fail-fast: false matrix: - luaVersion: ["5.1", "5.2", "5.3", "5.4", "luajit-2.1.0-beta3", "luajit-openresty"] + luaVersion: ["5.1", "5.2", "5.3", "5.4", "luajit-openresty"] os: ["ubuntu-latest", "macos-latest"] runs-on: ${{ matrix.os }} diff --git a/README.md b/README.md index 2d29e13..1f723f2 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ is a [fast image processing library with low memory needs](https://github.com/jc - standard Lua (5.1 up to 5.4) combined with the [`luaffi-tkl`](https://luarocks.org/modules/sudheerhebbale/luaffi-tkl) Lua package. On the x64 architecture `lua-vips` is continuously tested -- on Linux and MacOS with Lua 5.1, 5.2, 5.3, 5.4, luajit and openresty-luajit +- on Linux and MacOS with Lua 5.1, 5.2, 5.3, 5.4 and openresty-luajit - on Windows using [MSYS2 MinGW-w64](https://www.msys2.org/) with Lua 5.3, 5.4 and luajit `lua-vips` should work on arm64 (recently tested on a Pinephone Pro using PostmarketOS) and possibly x86 (currently untested) From f0a8e754cbb7c63d668111b9bee9efd8c4ce1904 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20L=C3=B6tscher?= Date: Fri, 20 Dec 2024 18:06:39 +0100 Subject: [PATCH 2/2] Update gh-actions-lua version --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5687a93..8ccd07f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: leafo/gh-actions-lua@v9 + - uses: leafo/gh-actions-lua@v10 with: luaVersion: ${{ matrix.luaVersion }}