47 lines
No EOL
874 B
YAML
47 lines
No EOL
874 B
YAML
trigger:
|
|
- master
|
|
|
|
pr:
|
|
branches:
|
|
include:
|
|
- master
|
|
|
|
jobs:
|
|
- job: Windows
|
|
pool:
|
|
vmImage: vs2017-win2016
|
|
steps:
|
|
- template: ci/azure-install-rust.yml
|
|
- template: ci/azure-test-all.yml
|
|
strategy:
|
|
matrix:
|
|
stable:
|
|
TOOLCHAIN: stable
|
|
nightly:
|
|
TOOLCHAIN: nightly
|
|
|
|
- job: Linux
|
|
pool:
|
|
vmImage: ubuntu-16.04
|
|
steps:
|
|
- template: ci/azure-install-rust.yml
|
|
- template: ci/azure-test-all.yml
|
|
strategy:
|
|
matrix:
|
|
stable:
|
|
TOOLCHAIN: stable
|
|
nightly:
|
|
TOOLCHAIN: nightly
|
|
|
|
- job: MacOS
|
|
pool:
|
|
vmImage: macOS-10.14
|
|
steps:
|
|
- template: ci/azure-install-rust.yml
|
|
- template: ci/azure-test-all.yml
|
|
strategy:
|
|
matrix:
|
|
stable:
|
|
TOOLCHAIN: stable
|
|
nightly:
|
|
TOOLCHAIN: nightly |