From e93fb5c24d8066cdce701c89a85f802ff2d01240 Mon Sep 17 00:00:00 2001 From: Enrico Seiler Date: Mon, 3 Jun 2024 11:11:59 +0200 Subject: [PATCH] [INFRA,FIX] CI --- .github/workflows/ci_linux.yml | 2 +- .github/workflows/ci_macos.yml | 2 +- test/cli/CMakeLists.txt | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci_linux.yml b/.github/workflows/ci_linux.yml index 5fd696f1..6ff0232b 100644 --- a/.github/workflows/ci_linux.yml +++ b/.github/workflows/ci_linux.yml @@ -55,7 +55,7 @@ jobs: - name: "IntelLLVM" compiler: "intel" build_type: Release - cxx_flags: "-fp-model=strict -Wno-overriding-t-option" # Ignore that googletest sets -fp-model=precise + cxx_flags: "-fp-model=strict -Wno-overriding-option" # Ignore that googletest sets -fp-model=precise steps: - name: Checkout diff --git a/.github/workflows/ci_macos.yml b/.github/workflows/ci_macos.yml index 74edc584..a22f1350 100644 --- a/.github/workflows/ci_macos.yml +++ b/.github/workflows/ci_macos.yml @@ -66,7 +66,7 @@ jobs: - name: Install CMake uses: seqan/actions/setup-cmake@main with: - cmake: 3.25.3 + cmake: 3.28.5 - name: Configure tests run: | diff --git a/test/cli/CMakeLists.txt b/test/cli/CMakeLists.txt index 1bfa7a38..c7c10296 100644 --- a/test/cli/CMakeLists.txt +++ b/test/cli/CMakeLists.txt @@ -16,11 +16,11 @@ target_use_datasources (cli_chopper_pipeline_test FILES small2.fa) target_use_datasources (cli_chopper_pipeline_test FILES small.split) add_cli_test (cli_timing_output_test.cpp) -target_use_datasources (cli_chopper_pipeline_test FILES small.fa) +target_use_datasources (cli_timing_output_test FILES small.fa) add_cli_test (util_display_layout_test.cpp) -target_use_datasources (cli_chopper_pipeline_test FILES seq1.fa) -target_use_datasources (cli_chopper_pipeline_test FILES seq2.fa) -target_use_datasources (cli_chopper_pipeline_test FILES seq3.fa) -target_use_datasources (cli_chopper_pipeline_test FILES small.fa) +target_use_datasources (util_display_layout_test FILES seq1.fa) +target_use_datasources (util_display_layout_test FILES seq2.fa) +target_use_datasources (util_display_layout_test FILES seq3.fa) +target_use_datasources (util_display_layout_test FILES small.fa) add_dependencies (util_display_layout_test display_layout)