Skip to content

Commit

Permalink
Add lua5.4 support to setup_lua.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
neilcook committed Oct 17, 2024
1 parent b2988e9 commit c3dbbc5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/gh_actions/setup_lua.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ else
elif [ "$LUA" == "lua5.3" ]; then
curl https://www.lua.org/ftp/lua-5.3.3.tar.gz | tar xz
cd lua-5.3.3;
elif [ "$LUA" == "lua5.4" ]; then
curl https://www.lua.org/ftp/lua-5.4.7.tar.gz | tar xz
cd lua-5.4.7;
fi

# Build Lua without backwards compatibility for testing
Expand Down

0 comments on commit c3dbbc5

Please sign in to comment.