We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bc74f0 commit dce8da0Copy full SHA for dce8da0
Dockerfile
@@ -21,4 +21,10 @@ RUN wget -q https://github.com/catchorg/Catch2/archive/refs/tags/v3.7.1.zip && \
21
unzip v3.7.1.zip && \
22
cd Catch2-3.7.1 && \
23
cmake -Bbuild -H. -DBUILD_TESTING=OFF && \
24
- cmake --build build/ --target install
+ cmake --build build/ --target install
25
+
26
+# Install python3
27
+RUN apt-get install -y python3 python3-pip python3-full
28
29
+# Install gcovr
30
+RUN pip3 install gcovr --break-system-packages
0 commit comments