From d4ba30354e59ebdfe11486477290caa1186432ef Mon Sep 17 00:00:00 2001 From: Sam Tobin-Hochstadt Date: Mon, 15 Dec 2014 19:56:50 -0500 Subject: [PATCH] Improve AppVeyor configuration. --- appveyor.yml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 80a3e09da6..e6a6e5dcb1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,8 +1,22 @@ version: 1.0.{build} -clone_depth: 50 + +clone_depth: 20 + +cache: + - C:\Users\appveyor\AppData\Roaming\Racket + build_script: - '"c:\Program Files (x86)\Microsoft Visual Studio 10.0\vc\vcvarsall.bat" x86' - echo %cd% - nmake win32-in-place PKGS="racket-test-core" + +test_script: - echo %cd% -- racket\racket.exe -l tests/racket/test \ No newline at end of file +- racket\racket.exe -l tests/racket/test + +notifications: + - provider: Email + to: + - samth@racket-lang.org + on_build_success: true + on_build_failure: true