From 8b5e8dd57bb2da304c70e547b72a0080624400cf Mon Sep 17 00:00:00 2001 From: Marcos Bento Date: Tue, 5 Nov 2024 16:10:07 +0000 Subject: [PATCH] Enable test debugging --- .github/ci-config.yml | 1 + tests/project_summary/configure.sh | 1 + tests/project_summary/test_project/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .github/ci-config.yml diff --git a/.github/ci-config.yml b/.github/ci-config.yml new file mode 100644 index 00000000..c4e3fcb8 --- /dev/null +++ b/.github/ci-config.yml @@ -0,0 +1 @@ +ctest_options: --verbose \ No newline at end of file diff --git a/tests/project_summary/configure.sh b/tests/project_summary/configure.sh index d1434e1f..3ea65cc3 100755 --- a/tests/project_summary/configure.sh +++ b/tests/project_summary/configure.sh @@ -1,6 +1,7 @@ #!/usr/bin/env bash set -e +set -x function EXPECT_ONE_OF() { diff --git a/tests/project_summary/test_project/CMakeLists.txt b/tests/project_summary/test_project/CMakeLists.txt index 4a991955..2a97a33e 100644 --- a/tests/project_summary/test_project/CMakeLists.txt +++ b/tests/project_summary/test_project/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required( VERSION 3.20 FATAL_ERROR ) +cmake_minimum_required( VERSION 3.18.4 FATAL_ERROR ) find_package( ecbuild 3.4 REQUIRED ) project( proja LANGUAGES NONE VERSION 0.2 )