From 0fb2c586b0c597f58874215b9951c12ce6569a65 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Thu, 10 Nov 2016 23:37:38 -0600 Subject: [PATCH] Switch Appveyor CI to latest generic testing scripts. --- appveyor.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 0d02119..330bcfe 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -27,16 +27,17 @@ configuration: init: - cd %APPVEYOR_BUILD_FOLDER%/.. - - appveyor DownloadFile "https://raw.githubusercontent.com/boostorg/regression/develop/ci/src/script.py" + - appveyor DownloadFile "https://raw.githubusercontent.com/boostorg/regression/develop/ci/src/ci_boost_common.py" + - appveyor DownloadFile "https://raw.githubusercontent.com/boostorg/regression/develop/ci/src/ci_boost_library_test.py" - dir - cd %APPVEYOR_BUILD_FOLDER% -install: python ../script.py install -before_build: python ../script.py before_build -build_script: python ../script.py build_script -after_build: python ../script.py after_build -before_test: python ../script.py before_test -test_script: python ../script.py test_script -after_test: python ../script.py after_test -on_success: python ../script.py on_success -on_failure: python ../script.py on_failure -on_finish: python ../script.py on_finish +install: python ../ci_boost_library_test.py install +before_build: python ../ci_boost_library_test.py before_build +build_script: python ../ci_boost_library_test.py build_script +after_build: python ../ci_boost_library_test.py after_build +before_test: python ../ci_boost_library_test.py before_test +test_script: python ../ci_boost_library_test.py test_script +after_test: python ../ci_boost_library_test.py after_test +on_success: python ../ci_boost_library_test.py on_success +on_failure: python ../ci_boost_library_test.py on_failure +on_finish: python ../ci_boost_library_test.py on_finish