Browse Source

Set up CI with Azure Pipelines

Daniel García 6 years ago
parent
commit
980a3e45db
1 changed files with 17 additions and 0 deletions
  1. 17 0
      azure-pipelines.yml

+ 17 - 0
azure-pipelines.yml

@@ -0,0 +1,17 @@
+pool:
+  vmImage: 'Ubuntu-16.04'
+
+steps:
+- script: |
+    ls -la
+    curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $(cat rust-toolchain)
+    echo "##vso[task.prependpath]$HOME/.cargo/bin"
+  displayName: 'Install Rust'
+
+- script: |
+    rustc -Vv
+    cargo -V
+  displayName: Query rust and cargo versions
+
+- script : cargo build --verbose --all-features
+  displayName: 'Build project'