Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ff63d5e

Browse files
authoredDec 29, 2024··
add ninja-build (#99)
* add ninja-build * add ninja-build * add ninja-build for coverage
1 parent 13e0a75 commit ff63d5e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

‎.github/workflows/coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install Dependencies
2424
run: |
2525
sudo apt-get -y update
26-
sudo apt-get install --no-install-recommends -y build-essential cmake python3-pip pybind11-dev libeigen3-dev libfmt-dev libtbb-dev libomp-dev libpcl-dev libgtest-dev lcov
26+
sudo apt-get install --no-install-recommends -y build-essential cmake python3-pip pybind11-dev libeigen3-dev libfmt-dev libtbb-dev libomp-dev libpcl-dev libgtest-dev lcov ninja-build
2727
pip install -U setuptools pytest pytest-cov numpy scipy
2828
2929
- name: Build (C++)

‎.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install Dependencies
2424
run: |
2525
sudo apt-get -y update
26-
sudo apt-get install --no-install-recommends -y build-essential cmake python3-pip pybind11-dev libeigen3-dev libfmt-dev libtbb-dev libomp-dev libpcl-dev libgtest-dev
26+
sudo apt-get install --no-install-recommends -y build-essential cmake python3-pip pybind11-dev libeigen3-dev libfmt-dev libtbb-dev libomp-dev libpcl-dev libgtest-dev ninja-build
2727
pip install -U setuptools pytest numpy scipy
2828
2929
- name: Build

‎docker/Dockerfile.pytest.gcc

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV DEBIAN_FRONTEND=noninteractive
77
RUN apt-get update && apt-get install --no-install-recommends -y \
88
&& apt-get install --no-install-recommends -y \
99
wget nano build-essential git cmake python3-dev python3-pip pybind11-dev \
10-
libeigen3-dev libomp-dev
10+
libeigen3-dev libomp-dev ninja-build
1111

1212
RUN mkdir -p ~/.config/pip
1313
RUN echo "[global]\nbreak-system-packages=true" > ~/.config/pip/pip.conf

‎docker/Dockerfile.pytest.llvm

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV DEBIAN_FRONTEND=noninteractive
77
RUN apt-get update && apt-get install --no-install-recommends -y \
88
&& apt-get install --no-install-recommends -y \
99
wget nano build-essential git cmake python3-dev python3-pip pybind11-dev \
10-
libeigen3-dev libomp-dev
10+
libeigen3-dev libomp-dev ninja-build
1111

1212
RUN apt-get update && apt-get install --no-install-recommends -y \
1313
&& apt-get install --no-install-recommends -y \

0 commit comments

Comments
 (0)
Please sign in to comment.