-
Notifications
You must be signed in to change notification settings - Fork 8
/
azure-pipelines.yml
32 lines (30 loc) · 968 Bytes
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
trigger: ["master"]
pr: ["master"]
resources:
repositories:
- repository: templates
type: github
name: alecmocatta/azure-pipeline-templates
endpoint: alecmocatta
jobs:
- template: rust.yml@templates
parameters:
endpoint: alecmocatta
default:
rust_toolchain: nightly
rust_lint_toolchain: nightly-2023-03-09
rust_flags: ''
rust_features: ';stats'
rust_target_check: ''
rust_target_build: ''
rust_target_run: ''
matrix:
windows:
imageName: 'windows-2019'
rust_target_run: 'x86_64-pc-windows-msvc i686-pc-windows-msvc' # currently broken building crate-type=lib: x86_64-pc-windows-gnu i686-pc-windows-gnu
mac:
imageName: 'macOS-10.15'
rust_target_run: 'x86_64-apple-darwin'
linux:
imageName: 'ubuntu-18.04'
rust_target_run: 'x86_64-unknown-linux-gnu i686-unknown-linux-gnu x86_64-unknown-linux-musl i686-unknown-linux-musl'