diff options
author | George Roman <30772943+georgeroman@users.noreply.github.com> | 2018-06-01 15:48:08 +0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2018-06-01 09:48:08 -0300 |
commit | 6334c894b2b3d1943edd4902bcd42883ced0915b (patch) | |
tree | 9df8f05bbd3a64c3529119f70ccdd3133463a9c7 | |
parent | bd26704e6625f76e7cfc04f87543bf669542ec8d (diff) | |
download | luarocks-6334c894b2b3d1943edd4902bcd42883ced0915b.tar.gz luarocks-6334c894b2b3d1943edd4902bcd42883ced0915b.tar.bz2 luarocks-6334c894b2b3d1943edd4902bcd42883ced0915b.zip |
Tests: only run build tests on Appveyor with MinGW (#808)
-rw-r--r-- | appveyor.yml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index 33d1033b..3b60fd9a 100644 --- a/appveyor.yml +++ b/appveyor.yml | |||
@@ -8,25 +8,34 @@ environment: | |||
8 | matrix: | 8 | matrix: |
9 | - LUA: "lua 5.1" | 9 | - LUA: "lua 5.1" |
10 | COMPILER: "vs" | 10 | COMPILER: "vs" |
11 | FILES: "" | ||
11 | - LUA: "lua 5.1" | 12 | - LUA: "lua 5.1" |
12 | COMPILER: "mingw" | 13 | COMPILER: "mingw" |
14 | FILES: "spec//build_spec.lua" | ||
13 | - LUA: "lua 5.2" | 15 | - LUA: "lua 5.2" |
14 | COMPILER: "vs" | 16 | COMPILER: "vs" |
17 | FILES: "" | ||
15 | - LUA: "lua 5.2" | 18 | - LUA: "lua 5.2" |
16 | COMPILER: "mingw" | 19 | COMPILER: "mingw" |
20 | FILES: "spec//build_spec.lua" | ||
17 | - LUA: "lua 5.3" | 21 | - LUA: "lua 5.3" |
18 | COMPILER: "vs" | 22 | COMPILER: "vs" |
23 | FILES: "" | ||
19 | - LUA: "lua 5.3" | 24 | - LUA: "lua 5.3" |
20 | COMPILER: "mingw" | 25 | COMPILER: "mingw" |
26 | FILES: "spec//build_spec.lua" | ||
21 | - LUA: "luajit 2.0" | 27 | - LUA: "luajit 2.0" |
22 | COMPILER: "vs" | 28 | COMPILER: "vs" |
29 | FILES: "" | ||
23 | - LUA: "luajit 2.0" | 30 | - LUA: "luajit 2.0" |
24 | COMPILER: "mingw" | 31 | COMPILER: "mingw" |
32 | FILES: "spec//build_spec.lua" | ||
25 | - LUA: "luajit 2.1" | 33 | - LUA: "luajit 2.1" |
26 | COMPILER: "vs" | 34 | COMPILER: "vs" |
35 | FILES: "" | ||
27 | - LUA: "luajit 2.1" | 36 | - LUA: "luajit 2.1" |
28 | COMPILER: "mingw" | 37 | COMPILER: "mingw" |
29 | 38 | FILES: "spec//build_spec.lua" | |
30 | 39 | ||
31 | init: | 40 | init: |
32 | # Setup Lua development/build environment | 41 | # Setup Lua development/build environment |
@@ -46,7 +55,7 @@ build_script: | |||
46 | - luarocks install cluacov 1> NUL 2> NUL | 55 | - luarocks install cluacov 1> NUL 2> NUL |
47 | 56 | ||
48 | test_script: | 57 | test_script: |
49 | - busted -o gtest -v --lpath=.//?.lua --exclude-tags=ssh,unix -Xhelper lua_dir=%CD%\lua_install,appveyor,%COMPILER% | 58 | - busted -o gtest -v --lpath=.//?.lua --exclude-tags=ssh,unix -Xhelper lua_dir=%CD%\lua_install,appveyor,%COMPILER% %FILES% |
50 | 59 | ||
51 | after_test: | 60 | after_test: |
52 | - pip install codecov | 61 | - pip install codecov |