From ee9d2c4a453f6bf34b1228ddd698a00d17db3dba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Couble?= Date: Fri, 5 Apr 2024 13:37:45 +0200 Subject: [PATCH 1/3] [submodule] Bump LVCore 09893c32 Merge branch 'refact/lidarReader' into 'master' 49e483bb Merge branch 'feat/saveGridShowState' into 'master' --- LVCore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LVCore b/LVCore index 0bae9bdcc..09893c32b 160000 --- a/LVCore +++ b/LVCore @@ -1 +1 @@ -Subproject commit 0bae9bdccb809b843713d744fd13dcbb79ac2f04 +Subproject commit 09893c32bd3c4b0178ad1585bafa2e22bc371099 -- GitLab From 2e7b5e3294ea5006a48795141fc8a70e1d81c2f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Couble?= Date: Fri, 5 Apr 2024 13:37:56 +0200 Subject: [PATCH 2/3] [submodule] Bump Interpreters plugins 7ee91b0 Merge branch 'refact/useNewLidarInterpreterAPI' into 'master' --- Plugins/HesaiPlugin | 2 +- Plugins/LivoxPlugin | 2 +- Plugins/VelodynePlugin | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Plugins/HesaiPlugin b/Plugins/HesaiPlugin index d20d2e295..7ee91b0da 160000 --- a/Plugins/HesaiPlugin +++ b/Plugins/HesaiPlugin @@ -1 +1 @@ -Subproject commit d20d2e29543df9ebe4fc04e379bd8317e2cec7f6 +Subproject commit 7ee91b0da9780890b0e5d5ce9a65cf4b6013e6b0 diff --git a/Plugins/LivoxPlugin b/Plugins/LivoxPlugin index c8fbc131d..ef3478dc9 160000 --- a/Plugins/LivoxPlugin +++ b/Plugins/LivoxPlugin @@ -1 +1 @@ -Subproject commit c8fbc131d7ad1e2f3a5ed36ff70ffc3846fda9fe +Subproject commit ef3478dc97a1cea7a6bc512d85088e4f193c396a diff --git a/Plugins/VelodynePlugin b/Plugins/VelodynePlugin index 2a9ad12bd..5a157f43c 160000 --- a/Plugins/VelodynePlugin +++ b/Plugins/VelodynePlugin @@ -1 +1 @@ -Subproject commit 2a9ad12bd79d3b61a931f1d4b447d8be91e5f908 +Subproject commit 5a157f43c2f5b70d69d9ae4cf5372c65b8814596 -- GitLab From 19f6fae239533d8b9c2f75d1d1d6689a44edeea2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Couble?= Date: Fri, 5 Apr 2024 13:20:16 +0200 Subject: [PATCH 3/3] [ci] Exclude LidarStream_HDL_64 tests from windows CI --- .gitlab/ci/CMakePresets.json | 10 +++++----- .gitlab/ci/excluded_tests.md | 7 ++++--- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.gitlab/ci/CMakePresets.json b/.gitlab/ci/CMakePresets.json index 88a05509a..8e8c4832e 100644 --- a/.gitlab/ci/CMakePresets.json +++ b/.gitlab/ci/CMakePresets.json @@ -23,21 +23,21 @@ "repeat": {"mode": "until-pass", "count": 3}, "timeout": 120, "noTestsAction": "error" - }, - "filter": { - "exclude": {"name": "lv|Python"} } }, { "name": "ci_ubuntu22_debug", "inherits": ["ci_common"], "filter": { - "exclude": {"name": "TestVelodyneHDLPositionReader"} + "exclude": {"name": "TestVelodyneHDLPositionReader"} } }, { "name": "ci_windows_vs2019", - "inherits": ["ci_common"] + "inherits": ["ci_common"], + "filter": { + "exclude": {"name": "lv|Python|TestVelodyneLidarStream_HDL_64"} + } } ] } \ No newline at end of file diff --git a/.gitlab/ci/excluded_tests.md b/.gitlab/ci/excluded_tests.md index aea64e10f..29513f6ba 100644 --- a/.gitlab/ci/excluded_tests.md +++ b/.gitlab/ci/excluded_tests.md @@ -1,9 +1,10 @@ -## ci-common +## ci-windows - `lv` -> LidarView ci doesn't support UI tests on all platforms. - `Python` -> Segfault need investigation. +- `TestVelodyneLidarStream_HDL_64` -> Stream frame delayed since [velodyneplugin!12](https://gitlab.kitware.com/LidarView/velodyneplugin/-/merge_requests/12) update -## ci-fedora35-debug -- `lv` -> Segfault with `xvfb-run` needs investigation. +## ci-ubuntu22-debug + - `TestVelodyneHDLPositionReader` -> doesn't find proj.db, gdal issue? -- GitLab