Windows CI builds already install ninja. Install it in all the Docker-based builds as well.
18 lines
230 B
Bash
18 lines
230 B
Bash
set -ex
|
|
|
|
apt-get update
|
|
apt-get install -y --no-install-recommends \
|
|
ca-certificates \
|
|
cmake \
|
|
curl \
|
|
file \
|
|
g++ \
|
|
git \
|
|
libssl-dev \
|
|
make \
|
|
ninja-build \
|
|
pkg-config \
|
|
python3 \
|
|
sudo \
|
|
unzip \
|
|
xz-utils
|