Skip to content

Commit

Permalink
Initial Azure Pipelines for Builds
Browse files Browse the repository at this point in the history
  • Loading branch information
jubos committed Aug 6, 2019
1 parent 824a6ab commit 34142f9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
pool:
vmImage: 'ubuntu-16.04'

steps:
- script: |
curl https://sh.rustup.rs -sSf | sh -s -- -y
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
- script: make validate
displayName: Validation of Toml Files

0 comments on commit 34142f9

Please sign in to comment.