From fbeda38b97dcf62c6d7e66640c81ba45f93113cc Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Mon, 1 Jun 2015 12:53:17 -0500 Subject: [PATCH] Avoid putting CI script in default location as that is the pre-clone dir in Appveyor. --- appveyor.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index b56264f..7bf1721 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -18,15 +18,15 @@ environment: - TOOLSET: vs-2013 init: - - appveyor DownloadFile "https://raw.githubusercontent.com/boostorg/regression/develop/ci/src/script.py" + - appveyor DownloadFile "https://raw.githubusercontent.com/boostorg/regression/develop/ci/src/script.py" -FileName /script.py - dir -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 /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