Skip to content

Commit 1958042

Browse files
committed
[ci] Add work around for VS2022 bug with luarocks
Since lua was built with VS2022, the luarocks install script uses `MSVCR80` as the default runtime which causes problems when loading dlls.
1 parent e712f61 commit 1958042

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ jobs:
5454
- name: Run tests
5555
run: |
5656
.\lua_install\bin\activate
57-
luarocks install lua-cjson2
58-
luarocks install busted
57+
luarocks install MSVCRT="m" lua-cjson2
58+
luarocks install MSVCRT="m" busted
5959
busted --verbose

0 commit comments

Comments
 (0)