Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Commit fbeda95

Browse files
committed
Set up basic Windows CI with Azure Pipelines
[skip ci]
1 parent bc871c7 commit fbeda95

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

azure-pipelines.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Starter pipeline
2+
# Start with a minimal pipeline that you can customize to build and deploy your code.
3+
# Add steps that build, run tests, deploy, and more:
4+
# https://aka.ms/yaml
5+
6+
trigger:
7+
- master
8+
pr:
9+
- master
10+
11+
pool:
12+
vmImage: 'vs2017-win2016'
13+
14+
steps:
15+
- script: cargo build -v
16+
displayName: 'Run cargo build -v'
17+
- script: cargo test -v
18+
displayName: 'Run cargo test -v'

0 commit comments

Comments
 (0)