diff options
author | Andrew Featherstone <andrew.featherstone@gmail.com> | 2017-12-17 21:50:06 (GMT) |
---|---|---|
committer | Andrew Featherstone <andrew.featherstone@gmail.com> | 2017-12-17 21:50:06 (GMT) |
commit | 0bdbd0aba6cbbd0cb2cb0cb8c5ca272b042f0167 (patch) | |
tree | f87e16dfc37aff34863b96e43347615c114a7349 | |
parent | b0c97773c93beeadfeea95ecd1a83c2817dc3b56 (diff) | |
download | SCons-0bdbd0aba6cbbd0cb2cb0cb8c5ca272b042f0167.zip SCons-0bdbd0aba6cbbd0cb2cb0cb8c5ca272b042f0167.tar.gz SCons-0bdbd0aba6cbbd0cb2cb0cb8c5ca272b042f0167.tar.bz2 |
Add AppVeyor configuration, based on .travi.yml's contents and http://buildbot.scons.org/.
-rw-r--r-- | .appveyor.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 0000000..2ddc8ee --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,20 @@ +shallow_clone: true + +environment: + matrix: + # Match the Python versions currently tested at http://buildbot.scons.org/#/, + # but include 32 and 64-bit variants. + - PYTHON: "C:\\Python27" + - PYTHON: "C:\\Python27-x64" + - PYTHON: "C:\\Python35" + - PYTHON: "C:\\Python35-x64" + - PYTHON: "C:\\Python36" + - PYTHON: "C:\\Python36-x64" + +install: + - "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" + - python --version + - pip install lxml + +test_script: + - python runtest.py -a || if [[ $? == 2 ]]; then exit 0; else exit 1; fi
\ No newline at end of file |