Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/ci_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ jobs:
run: |
mkdir -p build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug \
-DCMAKE_CXX_FLAGS="--coverage -fprofile-arcs -ftest-coverage -fprofile-abs-path -Werror" \
-DCMAKE_C_FLAGS="--coverage -fprofile-arcs -ftest-coverage -fprofile-abs-path -Werror" \
-DCMAKE_CXX_FLAGS="--coverage -fprofile-arcs -ftest-coverage -fprofile-abs-path" \
-DCMAKE_C_FLAGS="--coverage -fprofile-arcs -ftest-coverage -fprofile-abs-path" \
-DCMAKE_EXE_LINKER_FLAGS="-Wl,-lgcov" \
-DCMAKE_SHARED_LINKER_FLAGS="-Wl,-lgcov"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
run: |
mkdir -p build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_FLAGS="${{ matrix.cxx_flags }} -Werror"
-DCMAKE_CXX_FLAGS="${{ matrix.cxx_flags }}"

- name: Build and run tests
working-directory: build
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/ci_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ jobs:
- name: Configure tests
run: |
mkdir -p build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_FLAGS="-Werror"
cmake .. -DCMAKE_BUILD_TYPE=Release

- name: Build and run tests
working-directory: build
Expand Down
10 changes: 5 additions & 5 deletions cmake/package-lock.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,22 @@ CPMDeclarePackage (sharg
)

# seqan3
set (SEQAN3_VERSION 8724133817fc7889b280253c209aa47f6395a13c CACHE STRING "")
set (SEQAN3_VERSION 3.4.0 CACHE STRING "")
CPMDeclarePackage (seqan3
NAME seqan3
GIT_TAG ${SEQAN3_VERSION} # main
VERSION ${SEQAN3_VERSION}
GIT_TAG ${SEQAN3_VERSION}
GITHUB_REPOSITORY seqan/seqan3
SYSTEM TRUE
EXCLUDE_FROM_ALL TRUE
OPTIONS "INSTALL_SEQAN3 OFF" "CMAKE_MESSAGE_LOG_LEVEL WARNING"
)

# fmt
set (FMT_VERSION 11.2.0 CACHE STRING "")
set (FMT_VERSION 9908d00037d58233bcb1a7c99153bb96363994df CACHE STRING "")
CPMDeclarePackage (fmt
NAME fmt
VERSION ${FMT_VERSION}
GIT_TAG ${FMT_VERSION}
GIT_TAG ${FMT_VERSION} # master
GITHUB_REPOSITORY fmtlib/fmt
SYSTEM TRUE
EXCLUDE_FROM_ALL TRUE
Expand Down