You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CI: enable msvc config cache for windows workflow (SCons#4545)
And suitable environment var for the two Windows runners
tweaks: pip now won't show progress bars installs a few extra pkgs for Windows (winflexbison3 and dmd - but dmd still needs to be added to PATH)
Also add "quiet" option to choco install.
Enable pip cache
Signed-off-by: Mats Wichmann <[email protected]>
python -m pip install --progress-bar off --upgrade pip setuptools wheel
27
28
#python -m pip install flake8 pytest
28
-
if [ -f requirements-pkg.txt ]; then pip install -r requirements-pkg.txt; elif [ -f requirements.txt ]; then pip install -r requirements.txt; fi
29
+
if [ -f requirements-pkg.txt ]; then pip install --progress-bar off -r requirements-pkg.txt; elif [ -f requirements.txt ]; then pip install --progress-bar off -r requirements.txt; fi
0 commit comments