Skip to content

Commit

Permalink
[INFRA] Add macOS libc++ CI
Browse files Browse the repository at this point in the history
  • Loading branch information
eseiler committed Nov 16, 2023
1 parent 5cbcaf4 commit fc724a0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/ci_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ jobs:
fail-fast: true
matrix:
include:
- name: "clang17"
compiler: "clang-17"
build: unit
build_type: Release
cxx_flags: "-stdlib=libc++" # For verbosity. This is already the default.

- name: "gcc13"
compiler: "gcc-13"
build: unit
Expand Down
3 changes: 2 additions & 1 deletion test/unit/alignment/matrix/detail/debug_matrix_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ struct debug_matrix_traits<seqan3::detail::debug_matrix<matrix_t, first_sequence

#pragma GCC diagnostic push
// Ignore bogus warnings in fortified gcc13 build
#if defined(_FORTIFY_SOURCE) && (_FORTIFY_SOURCE == 2) // _FORTIFY_SOURCE=2 may cause conforming programs to fail
// _FORTIFY_SOURCE=2 may cause conforming programs to fail
#if not defined(__clang__) && defined(_FORTIFY_SOURCE) && (_FORTIFY_SOURCE == 2)
# pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#endif

Expand Down

0 comments on commit fc724a0

Please sign in to comment.