2019-04-04 03:33:19 +00:00
|
|
|
jobs:
|
2019-05-16 15:40:30 +00:00
|
|
|
# Check formatting
|
|
|
|
- template: ci/azure-rustfmt.yml
|
|
|
|
parameters:
|
|
|
|
name: rustfmt
|
2019-04-04 03:20:55 +00:00
|
|
|
|
2019-05-16 15:40:30 +00:00
|
|
|
# Test with Rust stable
|
|
|
|
- template: ci/azure-test-stable.yml
|
|
|
|
parameters:
|
|
|
|
name: test_starship
|
|
|
|
displayName: Test starship
|
|
|
|
|
|
|
|
# Test with Rust nightly
|
|
|
|
- template: ci/azure-test-nightly.yml
|
|
|
|
parameters:
|
|
|
|
name: test_nightly
|
|
|
|
displayName: Check starship with nightly
|
2019-04-04 03:20:55 +00:00
|
|
|
|
2019-05-01 15:12:02 +00:00
|
|
|
# Run the integration tests in a Docker container
|
2019-05-16 15:40:30 +00:00
|
|
|
- job: test_docker
|
|
|
|
displayName: Test starship Docker
|
2019-05-01 15:12:02 +00:00
|
|
|
pool:
|
2019-05-16 15:40:30 +00:00
|
|
|
vmImage: ubuntu-16.04
|
2019-05-01 15:12:02 +00:00
|
|
|
steps:
|
|
|
|
- script: ./integration_test
|