From 34142f925c4d526c1c70fca0e9d8d9af20825fac Mon Sep 17 00:00:00 2001 From: Curtis Spencer <41347+jubos@users.noreply.github.com> Date: Tue, 6 Aug 2019 16:47:37 -0700 Subject: [PATCH] Initial Azure Pipelines for Builds --- azure-pipelines.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000000..24e110f880 --- /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