diff --git a/setup/unix-ci.py b/setup/unix-ci.py index 4fb128998e..1795b77e11 100644 --- a/setup/unix-ci.py +++ b/setup/unix-ci.py @@ -180,6 +180,7 @@ IGNORED_DEPENDENCY_CVES = [ LINUX_BUNDLE = 'linux-64' MACOS_BUNDLE = 'macos-64' +WINDOWS_BUNDLE = 'windows-64' def install_bundle(dest=SW, which=''): @@ -196,6 +197,8 @@ def check_dependencies() -> None: install_bundle(dest, os.path.basename(dest)) dest = os.path.join(SW, MACOS_BUNDLE) install_bundle(dest, os.path.basename(dest)) + dest = os.path.join(SW, WINDOWS_BUNDLE) + install_bundle(dest, os.path.basename(dest)) grype = install_grype() with open((gc := os.path.expanduser('~/.grype.yml')), 'w') as f: print('ignore:', file=f)