Skip to content

Commit 721cab0

Browse files
authored
[ci] Update luarocks on windows to avoid hack (#85)
The latest version of luarocks has added ucrt support (windows-2022 has ucrt mingw installed). This means we can avoid the MSVCRT="m" hack.
1 parent c46db9c commit 721cab0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ jobs:
5353
- name: Install Lua (${{ matrix.lua }})
5454
run: |
5555
pip install hererocks
56-
hererocks lua_install -r^ --${{ matrix.lua }}
56+
hererocks lua_install -r@3a142ce --${{ matrix.lua }}
5757
- name: Build lua-simdjson
5858
run: |
5959
.\lua_install\bin\activate
6060
luarocks make
6161
- name: Run tests
6262
run: |
6363
.\lua_install\bin\activate
64-
luarocks install MSVCRT="m" lua-cjson2
65-
luarocks install MSVCRT="m" busted
64+
luarocks install lua-cjson2
65+
luarocks install busted
6666
busted --verbose

0 commit comments

Comments
 (0)