Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,19 @@ jobs:
matrix:
version: [5.1.5, 5.2.4, 5.3.6, 5.4.7]

env:
LUA_VERSION: ${{ matrix.version }}

steps:
- name: Install Lua dependencies
run: sudo apt install -y libreadline-dev
- name: Build PUC-Rio Lua ${{ matrix.version }}
env:
LUA_VERSION: ${{ matrix.version }}
run: |
wget "https://www.lua.org/ftp/lua-${LUA_VERSION}.tar.gz"
tar xzvf "lua-${LUA_VERSION}.tar.gz"
cd "lua-${LUA_VERSION}"
make linux SYSLIBS="-Wl,-E -ldl -lreadline" SYSCFLAGS="-DLUA_USE_LINUX -ULUA_COMPAT_5_2 -DLUA_USE_APICHECK" CC='gcc -g'
make linux SYSLIBS="-Wl,-E -ldl -lreadline" SYSCFLAGS="-DLUA_USE_LINUX -DLUA_USE_APICHECK" CC='gcc -g'
- name: Install PUC-Rio Lua ${{ matrix.version }}
env:
LUA_VERSION: ${{ matrix.version }}
run: |
cd "lua-${LUA_VERSION}"
sudo make install
Expand All @@ -46,7 +47,6 @@ jobs:
xvfb-run -a sh -c 'LD_PRELOAD="${sanitizers}" make check'
- name: Check that make install works
env:
LUA_VERSION: ${{ matrix.version }}
LSAN_OPTIONS: suppressions=${{ github.workspace }}/.github/lsan.supp
UBSAN_OPTIONS: print_stacktrace=1:report_error_type=1:halt_on_error=1:suppressions=${{ github.workspace }}/.github/ubsan.supp
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msvc-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

env:
WINGTK_URL: https://github.com/wingtk/gvsbuild/releases/download/2024.10.0/GTK${{ matrix.gtk-major-version }}_Gvsbuild_2024.10.0_x64.zip
LUAINSTALLER_URL: https://github.com/luau-project/LuaInstaller/releases/download/v0.3.0.0/LuaInstaller.Console-v0.3.0.0-x64.zip
LUAINSTALLER_URL: https://github.com/luau-project/LuaInstaller/releases/download/v0.5.0.0/LuaInstaller.Console-v0.5.0.0-x64.zip

steps:

Expand Down
Loading