aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham <hisham@gobolinux.org>2016-08-22 17:40:29 -0300
committerHisham <hisham@gobolinux.org>2016-08-22 17:40:29 -0300
commit35ff15f4ce2f5345df07d8512db65f170a50d4ab (patch)
tree64dfd5c8906eff6f71d028f3d4f21244bdd2febd
parentec177a4227d14ad28556baa5132376337feea7fb (diff)
downloadluarocks-35ff15f4ce2f5345df07d8512db65f170a50d4ab.tar.gz
luarocks-35ff15f4ce2f5345df07d8512db65f170a50d4ab.tar.bz2
luarocks-35ff15f4ce2f5345df07d8512db65f170a50d4ab.zip
Put MinGW in PATH for hererocks too
-rw-r--r--appveyor.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 94fd6289..1d29b18d 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -32,6 +32,8 @@ init:
32# Setup Lua development/build environment 32# Setup Lua development/build environment
33# Make VS 2015 command line tools available 33# Make VS 2015 command line tools available
34- call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %platform% 34- call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %platform%
35# Add MinGW compiler to the path
36- set PATH=C:\MinGW\bin;%PATH%
35 37
36before_build: 38before_build:
37 - set PATH=C:\Python27\Scripts;%PATH% # Add directory containing 'pip' to PATH 39 - set PATH=C:\Python27\Scripts;%PATH% # Add directory containing 'pip' to PATH
@@ -43,7 +45,6 @@ build_script:
43 - luarocks install busted 1> NUL 2> NUL 45 - luarocks install busted 1> NUL 2> NUL
44 46
45test_script: 47test_script:
46 - set PATH=C:\MinGW\bin;%PATH% # Add MinGW compiler to the path
47 - busted --lpath=.//?.lua --exclude-tags=ssh,unix,mock -Xhelper appveyor,%COMPILER% 48 - busted --lpath=.//?.lua --exclude-tags=ssh,unix,mock -Xhelper appveyor,%COMPILER%
48 49
49after_test: 50after_test: