Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,8 @@ jobs:
CONDA_SUBDIR: win-64

- name: Choco Install
if: runner.arch != 'ARM64'
# We may need the complete tooling so that cmake tests pass on windows
if: runner.arch != 'ARM64' && matrix.test-type == 'parallel'
# The parallel tests compile binaries with the Visual Studio 2017 toolchain
run: choco install visualstudio2017-workload-vctools

- name: Conda Install
Expand Down
20 changes: 20 additions & 0 deletions news/ci-limit-vs2017-choco.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
### Enhancements

* <news item>

### Bug fixes

* <news item>

### Deprecations

* <news item>

### Docs

* <news item>

### Other

* Install the Visual Studio 2017 Build Tools only for Windows test jobs that
exercise the compiler toolchain.
Loading