Skip to content

Commit 039bc74

Browse files
committed
> LuaJIT uses rolling releases. There are no release tarballs available for download. > > Please do not use obsolete versions from older tarballs or zip files. Please remove any outdated links to these downloads — these links will cease to work soon. > > https://luajit.org/download.html
1 parent 6241add commit 039bc74

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ jobs:
4141
run: |
4242
mkdir libs winlibs
4343
44-
wget https://luajit.org/download/LuaJIT-${{ env.luajit_ver }}.tar.gz
45-
tar xf LuaJIT-${{ env.luajit_ver }}.tar.gz
46-
cd LuaJIT-${{ env.luajit_ver }}
44+
git clone https://luajit.org/git/luajit.git
45+
cd luajit
46+
git switch --detach tags/v${{ env.luajit_ver }}
4747
make CROSS=i686-w64-mingw32- HOST_CC="gcc -m32" TARGET_SYS=Windows BUILDMODE=static
4848
for f in lua.h luaconf.h lualib.h lauxlib.h; do
4949
cp src/$f ../winlibs/

0 commit comments

Comments
 (0)