Migrate CI to boost-ci shared workflow#140
Merged
Merged
Conversation
761eab1 to
9442bd6
Compare
9442bd6 to
37d82f2
Compare
Before c++17, std::atomic was not initializing their members, causing undefined behaviour.
37d82f2 to
851ab65
Compare
Fixes icpx 128-bit atomic compare_exchange undefined reference. The __atomic_compare_exchange builtin requires explicit -latomic linkage on Linux for icpx (Intel DPC++) and clang when using 128-bit atomics with tagged_index.
…ary config Add test/cmake_test/CMakeLists.txt (new unified folder the CI checks first) with BOOST_CI_INSTALL_TEST branching, replacing the old cmake_install_test fallback. Also update cmake_install_test for backward compatibility. Root cause: b2 install calls boost-install.boost-install with empty library list for header-only libs lacking the 'install' option. BoostConfig.cmake is generated unconditionally, but per-library boost_lockfree-config.cmake is skipped. So find_package(Boost CONFIG REQUIRED COMPONENTS lockfree) fails because boost_find_component cannot find the per-library config. Fix: Use find_package(Boost CONFIG QUIET COMPONENTS lockfree) first. If Boost::lockfree target wasn't created (B2 install case), create it manually as INTERFACE IMPORTED using include dirs from Boost::headers. Aligns with boost.heap PR#62 fixes.
Addresses all UBSan and AddressSanitizer failures detected in latest CI: - Fix UBSan out-of-bounds-index in spsc_queue_test.cpp:200 Use std::distance() for iterator comparisons instead of raw pointer comparisons to avoid false positives - Fix 384-byte AddressSanitizer leak in freelist_test Track and destruct all allocated nodes in oom_test() and drain remaining nodes in test destructor
fc50d12 to
6c18b2e
Compare
6c18b2e to
152d47d
Compare
c6565eb to
97fe30d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.