Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[INFRA,FIX] CI #242

Merged
merged 1 commit into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
10 changes: 5 additions & 5 deletions test/cli/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Loading