Skip to content

Commit

Permalink
Set up CI with Azure Pipelines [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Matan Kushner committed Apr 4, 2019
1 parent e519c3f commit e68a7d2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions azure-pipelines.yml
@@ -0,0 +1,21 @@
strategy:
matrix:
stable:
rustup_toolchain: stable
beta:
rustup_toolchain: beta
nightly:
rustup_toolchain: nightly

pool:
vmImage: 'ubuntu-16.04'

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

0 comments on commit e68a7d2

Please sign in to comment.