Skip to content

Commit fd0e2bd

Browse files
committed
ci: install pip packages
1 parent 4416958 commit fd0e2bd

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.appveyor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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%

.azure-pipelines.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)