From 096a3731f44d004700cb3bb0289d630995aaffdc Mon Sep 17 00:00:00 2001 From: Paul Gessinger <hello@paulgessinger.com> Date: Mon, 30 Jan 2023 13:42:18 +0100 Subject: [PATCH] remove extra check, change CI LCG version --- .github/workflows/clang-tidy.yml | 2 +- CMakeLists.txt | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/clang-tidy.yml b/.github/workflows/clang-tidy.yml index 2a99a5337..bdb9fc5b3 100644 --- a/.github/workflows/clang-tidy.yml +++ b/.github/workflows/clang-tidy.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - LCG: ["LCG_102/x86_64-centos7-clang12-opt"] + LCG: ["dev4/x86_64-centos7-clang12-opt"] steps: - uses: actions/checkout@v2 - uses: cvmfs-contrib/github-action-cvmfs@v2 diff --git a/CMakeLists.txt b/CMakeLists.txt index 3260cb7f7..c2dae7e77 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -151,12 +151,7 @@ endif() if(DD4HEP_USE_EDM4HEP) find_package(EDM4HEP REQUIRED) - - set(podio_required 0.16.0) - find_package(podio REQUIRED ${podio_required}) - if(NOT podio_VERSION VERSION_GREATER_EQUAL podio_required) - message(FATAL_ERROR "podio found version ${podio_VERSION} is insufficient (${podio_required})") - endif() + find_package(podio 0.16.0 REQUIRED) # DD4HEP_SETUP_EDM4HEP_TARGETS() endif() -- GitLab