Skip to content

Commit

Permalink
Merge pull request #3213 from eseiler/infra/macos
Browse files Browse the repository at this point in the history
[INFRA] Add macOS libc++ CI
  • Loading branch information
eseiler authored Nov 17, 2023
2 parents 4c10afc + 0c82ec4 commit 96518e5
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

1 comment on commit 96518e5

@vercel
Copy link

@vercel vercel bot commented on 96518e5 Nov 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

seqan3 – ./

seqan3-seqan.vercel.app
seqan3-git-master-seqan.vercel.app
seqan3.vercel.app

Please sign in to comment.