1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-22 22:42:48 +03:00

more azure tweakage

This commit is contained in:
Wez Furlong 2019-06-22 23:06:45 -07:00
parent 97aa4986c8
commit 26e8635076
2 changed files with 10 additions and 5 deletions

View File

@ -6,6 +6,7 @@ User facing home page at: https://wezfurlong.org/wezterm/
[![Build Status](https://travis-ci.org/wez/wezterm.svg?branch=master)](https://travis-ci.org/wez/wezterm)
[![Build status](https://ci.appveyor.com/api/projects/status/4ys3pb1vb1ja8b7h/branch/master?svg=true)](https://ci.appveyor.com/project/wez/wezterm/branch/master)
[![Build Status](https://dev.azure.com/wez0788/wezterm/_apis/build/status/wez.wezterm?branchName=master)](https://dev.azure.com/wez0788/wezterm/_build/latest?definitionId=1&branchName=master)
![Screenshot](docs/screenshots/two.png)

View File

@ -21,23 +21,27 @@ pool:
steps:
- script: |
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $RUSTUP_TOOLCHAIN
git submodule update --init
displayName: Update submodules
- script: |
curl https://sh.rustup.rs -sSf | sh -s -- -yv --default-toolchain $RUSTUP_TOOLCHAIN
echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin"
displayName: Install rust
condition: ne( variables['Agent.OS'], 'Windows_NT' )
- script: |
curl -sSf -o rustup-init.exe https://win.rustup.rs
rustup-init.exe -y --default-toolchain %RUSTUP_TOOLCHAIN%
rustup-init.exe -yv --default-toolchain %RUSTUP_TOOLCHAIN%
echo "##vso[task.setvariable variable=PATH;]%PATH%;%USERPROFILE%\.cargo\bin"
displayName: Windows install rust
condition: eq( variables['Agent.OS'], 'Windows_NT' )
- script: |
rustc -vV
cargo -vV
displayName: Show installed rust+cargo version
- script: |
sudo ./get-deps
displayName: Install system dependencies
condition: ne( variables['Agent.OS'], 'Windows_NT' )
- script: |
git submodule update --init
displayName: Update submodules
- script: cargo build --all
displayName: Cargo build
- script: cargo test --all