cargo_gn 0.0.10

Cargo integration with the GN build system
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
variables:
  RUST_BACKTRACE: full

pool:
  vmImage: 'ubuntu-16.04'

steps:
  - checkout: self
    submodules: true
  - script: |
      curl https://sh.rustup.rs -sSf | sh -s -- -y
      echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin"
    displayName: Install rust
  - script: ./test.sh
    displayName: Cargo test