File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 99 build-lua :
1010 name : Build Lua in Steam Runtime
1111 runs-on : ubuntu-latest
12- env :
13- LUA_VERSION : 5.4.6
1412 steps :
1513 - name : Build in Steam Runtime container
1614 uses : addnab/docker-run-action@v3
2725 cd "$WORKDIR"
2826
2927 # Download with proper error checking
30- curl -fsSL "https://www.lua.org/ftp/lua-${LUA_VERSION} .tar.gz" --output lua.tar.gz
28+ curl -fsSL "https://www.lua.org/ftp/lua-5.4.6 .tar.gz" --output lua.tar.gz
3129
3230 # Verify download
3331 if [ ! -s lua.tar.gz ]; then
@@ -37,12 +35,12 @@ jobs:
3735
3836 # Extract with verification
3937 tar xf lua.tar.gz
40- if [ ! -d "lua-${LUA_VERSION} " ]; then
38+ if [ ! -d "lua-5.4.6 " ]; then
4139 echo "Extraction failed"
4240 exit 1
4341 fi
4442
45- cd "lua-${LUA_VERSION} "
43+ cd "lua-5.4.6 "
4644 make clean
4745 make MYCFLAGS="-fPIC" MYLDFLAGS="-shared" linux
4846
You can’t perform that action at this time.
0 commit comments