File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,8 @@ build_script:
3939 # The CMAKE_CONFIGURATION_TYPES CMake option make sure to not uselessly provide
4040 # build configurations that will not be used.
4141 - cmd : >
42+ pip install colorama
43+
4244 echo %NUMBER_OF_PROCESSORS%
4345
4446 set CMAKE_BUILD_PARALLEL_LEVEL=%NUMBER_OF_PROCESSORS%
Original file line number Diff line number Diff line change @@ -71,10 +71,12 @@ strategy:
7171 RUNTIME_FILES : /usr/lib/gcc/i686-w64-mingw32/10-posix/libgcc_s_dw2-1.dll /usr/lib/gcc/i686-w64-mingw32/10-posix/libstdc++-6.dll /usr/i686-w64-mingw32/lib/libwinpthread-1.dll
7272 macOS amd64 AppleClang :
7373 VM_IMAGE : ' macOS-12'
74+ PIP_PACKAGES : colorama
7475 CMAKE_GENERATOR : Unix Makefiles
7576 NPROC_COMMAND : sysctl -n hw.logicalcpu
7677 macOS arm64 AppleClang :
7778 VM_IMAGE : ' macOS-12'
79+ PIP_PACKAGES : colorama
7880 CMAKE_GENERATOR : Unix Makefiles
7981 COMPILER_FLAGS : -target arm64-apple-macos11 -Wno-overriding-t-option
8082 NPROC_COMMAND : sysctl -n hw.logicalcpu
@@ -99,6 +101,9 @@ steps:
99101 if [ -n "${APT_PACKAGES:-}" ]; then
100102 sudo apt-get update && sudo apt-get -y -q --no-install-recommends install ${APT_PACKAGES}
101103 fi
104+ if [ -n "${PIP_PACKAGES:-}" ]; then
105+ pip install ${PIP_PACKAGES}
106+ fi
102107 if [ -n "${SETUP_COMMANDS:-}" ]; then
103108 $(SETUP_COMMANDS)
104109 fi
You can’t perform that action at this time.
0 commit comments