From 4b25160bfccc3543a0fdf92c00436047be169bb5 Mon Sep 17 00:00:00 2001 From: Louise Poubel Date: Fri, 7 Jan 2022 13:21:34 -0800 Subject: [PATCH] Fix Focal on Jenkins (#364) Signed-off-by: Louise Poubel --- .github/ci/packages.apt | 3 ++- examples/CMakeLists.txt | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/ci/packages.apt b/.github/ci/packages.apt index 9c1b95126..6e553a2de 100644 --- a/.github/ci/packages.apt +++ b/.github/ci/packages.apt @@ -1,5 +1,6 @@ libeigen3-dev libignition-cmake2-dev +python3-distutils +python3-pybind11 ruby-dev swig -python3-pybind11 diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 043fd7299..ade7a10d5 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,5 +1,7 @@ cmake_minimum_required(VERSION 3.5 FATAL_ERROR) +project(ignition-math-examples) + # Find the Ignition-Math library set(IGN_MATH_VER 6) find_package(ignition-math${IGN_MATH_VER} REQUIRED)