corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 version: 1.6+{build}
2  
3 nuget:
4 disable_publish_on_pr: true
5  
6 deploy: off
7  
8 # Test against this version of Node.js
9 environment:
10 global:
11 nodejs_version: "0.12"
12  
13 matrix:
14 - PYTHON: "C:\\Python27"
15 PYTHON_VERSION: "2.7.x"
16 PYTHON_ARCH: "32"
17  
18 # Install scripts. (runs after repo cloning)
19 install:
20 # Get the latest stable version of Node.js or io.js
21 - ps: Install-Product node $env:nodejs_version
22 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
23 - pip --version
24  
25 # Post-install test scripts.
26 test_script:
27 # Output useful info for debugging.
28 - node --version
29 - npm --version
30 - python --version
31 # run tests
32 - bash -c "./build ci"
33  
34 # Don't actually build.
35 build: off