fix(ci): add ninja-build as an executable dependencies

This commit is contained in:
Emile Rolley 2022-02-08 16:14:55 +01:00
parent 8d0c8a4e86
commit 7c5c6ef6fa
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ jobs:
- name: Install Python dependencies
run: |
sudo apt-get update && sudo apt-get install python3-dev python3-setuptools python3-pygments man2html rsync colordiff libmpc-dev
sudo apt-get update && sudo apt-get install python3-dev python3-setuptools python3-pygments man2html rsync colordiff libmpc-dev ninja-build
sudo python3 -m pip install --upgrade pip
sudo python3 -m pip install virtualenv
sudo make pygments

View File

@ -10,7 +10,7 @@ export
# Dependencies
##########################################
EXECUTABLES = man2html virtualenv python3 colordiff node pygmentize nodejs npm ninja
EXECUTABLES = man2html virtualenv python3 colordiff node pygmentize nodejs npm ninja-build
K := $(foreach exec,$(EXECUTABLES),\
$(if $(shell which $(exec)),some string,$(warning [WARNING] No "$(exec)" executable found. \
Please install this executable for everything to work smoothly)))