Skip to content
Merged
Changes from 2 commits
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
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ jobs:
luaVersion: ${{ matrix.luaVersion }}
- name: Setup ‘luarocks’
uses: luarocks/gh-actions-luarocks@v5
- name: Fix ’MSVCRT’ for luajit and luajit-openresty on Windows
if: ${{ startsWith(matrix.platform, 'windows') && startsWith(matrix.luaVersion, 'luajit') }}
run: luarocks config variables.MSVCRT UCRTBASE
- name: Fix ’LUA_LIBDIR’ for luajit-openresty on Windows
if: ${{ startsWith(matrix.platform, 'windows') && matrix.luaVersion == 'luajit-openresty' }}
run: luarocks config variables.LUA_LIBDIR "${{ github.workspace }}\.lua\bin"
- name: Make and install
run: |
luarocks make -- luasocket-scm-3.rockspec
Expand Down
Loading