Skip to content

Commit

Permalink
Expose cross parameter in root template
Browse files Browse the repository at this point in the history
  • Loading branch information
1wilkens committed Nov 16, 2019
1 parent 380a1cd commit 0d5f834
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions azure/stages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ parameters:
minrust: 1.32.0 # Rust 2018 with uniform paths
benches: false
prefix: ''
cross: true
envs: {}
setup: []
test_ignored: false
Expand Down Expand Up @@ -52,6 +53,7 @@ stages:
jobs:
- template: tests.yml
parameters:
cross: ${{ parameters.cross }}
envs: ${{ parameters.envs }}
setup: ${{ parameters.setup }}
test_ignored: ${{ parameters.test_ignored }}
Expand Down
3 changes: 2 additions & 1 deletion azure/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
parameters:
cross: true # per default also test on Windows and macOS
envs: {}
setup: []
test_ignored: false
Expand All @@ -10,7 +11,7 @@ jobs:
- template: test.yml
parameters:
name: cargo_test_stable
cross: true # also test on Windows and macOS
cross: ${{ parameters.cross }}
envs: ${{ parameters.envs }}
setup: ${{ parameters.setup }}
test_ignored: ${{ parameters.test_ignored }}
Expand Down

0 comments on commit 0d5f834

Please sign in to comment.