-
Notifications
You must be signed in to change notification settings - Fork 68
/
appveyor.yml
35 lines (31 loc) · 1.01 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
shallow_clone: true
environment:
matrix:
- LUAT: "lua"
LUAV: "5.1"
- LUAT: "lua"
LUAV: "5.2"
- LUAT: "lua"
LUAV: "5.3"
- LUAT: "lua"
LUAV: "5.4"
- LUAT: "luajit"
LUAV: "2.0"
- LUAT: "luajit"
LUAV: "2.1"
before_build:
- set PATH=C:\MinGW\bin;%PATH%
- set PATH=C:\Python37;C:\Python37\Scripts;%PATH% # Add directory containing 'pip' to PATH
- IF NOT EXIST lua_install-%LUAV%\bin\activate.bat ( pip install --upgrade certifi )
- FOR /F "tokens=* USEBACKQ" %%F IN (`python -c "import certifi;print(certifi.where())"`) DO ( SET SSL_CERT_FILE=%%F )
- IF NOT EXIST lua_install-%LUAV%\bin\activate.bat ( pip install hererocks )
- IF NOT EXIST lua_install-%LUAV%\bin\activate.bat ( hererocks lua_install-%LUAV% --%LUAT% %LUAV% %HEREROCKS_FLAGS% --luarocks latest )
- call lua_install-%LUAV%\bin\activate
- luarocks install busted
- luarocks install luacheck
- luarocks install cluacov --deps-mode=none
build_script:
- luarocks make
test_script:
- luacheck src spec
- busted