From b03e9a636f8dcccfeb7368dc6c09e100284021b1 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Mon, 7 Aug 2017 15:36:14 -0700 Subject: [PATCH] Fix configure batch script and add test batch script --- appveyor.yml | 4 +--- script/configure.cmd | 4 ++-- script/test.cmd | 1 + 3 files changed, 4 insertions(+), 5 deletions(-) create mode 100644 script/test.cmd diff --git a/appveyor.yml b/appveyor.yml index 357c2f14..4799f3d0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -10,10 +10,8 @@ platform: install: - script\configure.cmd - - msbuild runtime.vcxproj - - msbuild compiler.vcxproj - - msbuild tests.vcxproj test_script: + - script\test.cmd build: off diff --git a/script/configure.cmd b/script/configure.cmd index 77819efc..dc73e8de 100644 --- a/script/configure.cmd +++ b/script/configure.cmd @@ -1,3 +1,3 @@ git submodule update --init --recursive -.\externals\gyp\gyp project.gyp --depth . -.\externals\gyp\gyp tests.gyp --depth . +call .\externals\gyp\gyp.bat project.gyp --depth . +call .\externals\gyp\gyp.bat tests.gyp --depth . diff --git a/script/test.cmd b/script/test.cmd new file mode 100644 index 00000000..08a2aa98 --- /dev/null +++ b/script/test.cmd @@ -0,0 +1 @@ +msbuild /p:Configuration=Test tests.vcxproj \ No newline at end of file