diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000..24e110f8 --- /dev/null +++ b/azure-pipelines.yml @@ -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