Skip to content

Commit 23abf92

Browse files
authored
Remove windows-64-2016 from Evergreen config (#1209)
1 parent c7e43c1 commit 23abf92

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.evergreen/config_generator/etc/distros.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,6 @@ def validate_os_ver(cls, value):
160160
Distro(name='windows-2022-large', os='windows', os_type='windows', os_ver='2022'),
161161
Distro(name='windows-2022-small', os='windows', os_type='windows', os_ver='2022'),
162162

163-
Distro(name='windows-64-2016', os='windows', os_type='windows', os_ver='2016'),
164163
Distro(name='windows-64-2019', os='windows', os_type='windows', os_ver='2019'),
165164

166165
Distro(name='windows-64-vsMulti-small', os='windows', os_type='windows', vs_ver='vsMulti', size='small'),

.evergreen/scripts/find-cmake-version.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,7 @@ local_cache_dir() {
3535
declare res
3636
case "${OSTYPE:?}" in
3737
cygwin)
38-
if [[ "${distro_id:?}" == windows-64-2016 ]]; then
39-
# Remove once BUILD-16821 is resolved.
40-
res="${HOME:?}/.cache" || return
41-
else
42-
res="$(cygpath -au "${LOCALAPPDATA:?}")" || return
43-
fi
38+
res="$(cygpath -au "${LOCALAPPDATA:?}")" || return
4439
;;
4540
darwin*)
4641
res="${HOME:?}/Library/Caches"

0 commit comments

Comments
 (0)