clap/.azure-pipelines.yml

39 lines
1.1 KiB
YAML
Raw Normal View History

2020-02-02 19:11:41 +00:00
name: $(Build.BuildId)
trigger:
# This is where pull requests from "bors r+" are built.
- staging
# This is where pull requests from "bors try" are built.
- trying
# Always build master
- master
pr:
# Enable building pull requests.
- master
stages:
- stage: Testing
jobs:
- job:
variables:
2020-03-13 18:26:45 +00:00
rust: 1.40.0
2020-02-02 19:11:41 +00:00
strategy:
matrix:
2020-04-10 10:31:46 +00:00
MinGW 32-bit:
2020-02-02 19:11:41 +00:00
image: vs2017-win2016
target: i686-pc-windows-gnu
2020-04-10 10:31:46 +00:00
MinGW 64-bit:
2020-02-02 19:11:41 +00:00
image: vs2017-win2016
target: x86_64-pc-windows-gnu
pool:
vmImage: $(image)
steps:
- checkout: self
fetchDepth: 1
path: clap
displayName: Checkout repository
- script: rustup default $(rust)-$(target)
displayName: Install rust
2020-04-12 01:36:20 +00:00
- script: cargo test --no-default-features --features "std cargo" -p clap:3.0.0-beta.1
displayName: Test with almost no features
2020-02-03 10:29:57 +00:00
- script: cargo test --features "yaml unstable"
2020-02-02 19:11:41 +00:00
displayName: Test with most features