From 8ecdf81c906839ac138b80b3fcc1ec73cca69219 Mon Sep 17 00:00:00 2001 From: jatin Date: Mon, 13 Nov 2023 18:02:12 +0000 Subject: [PATCH] Skip plotter configuration in CI --- tools/plotter/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/plotter/CMakeLists.txt b/tools/plotter/CMakeLists.txt index 6e6d33d..5f244d4 100644 --- a/tools/plotter/CMakeLists.txt +++ b/tools/plotter/CMakeLists.txt @@ -1,3 +1,8 @@ +if($ENV{CI}) + message(STATUS "Configuring in CI, skipping plotter tool...") + return() +endif() + CPMAddPackage( NAME matplotlib-cpp GIT_REPOSITORY https://github.com/jatinchowdhury18/matplotlib-cpp