aboutsummaryrefslogtreecommitdiffhomepage
path: root/build_win.bat
diff options
context:
space:
mode:
authorCalvin Rose <calsrose@gmail.com>2019-11-09 10:03:56 -0600
committerCalvin Rose <calsrose@gmail.com>2019-11-09 10:03:56 -0600
commit8911daaf6c8e17d07bb6a7eb6d144c84867b0509 (patch)
treec54a7fd65c988bc32e00d1ebc1aa42ce392e9ce8 /build_win.bat
parentFix janet_opt* api. (diff)
Add --test flag to jpm.
Also test some select packages when testing installation. This is used in CI to make sure that versions of Janet work with the most libraries.
Diffstat (limited to 'build_win.bat')
-rw-r--r--build_win.bat6
1 files changed, 6 insertions, 0 deletions
diff --git a/build_win.bat b/build_win.bat
index ea97039e..163ce858 100644
--- a/build_win.bat
+++ b/build_win.bat
@@ -183,6 +183,12 @@ call jpm --verbose quickbin testexec.janet build\testexec2.exe
@if errorlevel 1 goto :TESTFAIL
call build\testexec2.exe
@if errorlevel 1 goto :TESTFAIL
+call jpm --verbose --test --modpath=. install https://github.com/janet-lang/jhydro.git
+@if errorlevel 1 goto :TESTFAIL
+call jpm --verbose --test --modpath=. install https://github.com/janet-lang/path.git
+@if errorlevel 1 goto :TESTFAIL
+call jpm --verbose --test --modpath=. install https://github.com/janet-lang/argparse.git
+@if errorlevel 1 goto :TESTFAIL
popd
exit /b 0