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

github: run asan build on fedora36 #5800

Merged
merged 1 commit into from
Mar 16, 2024
Merged

Commits on Mar 16, 2024

  1. github: run asan build on fedora36

    Problem: The address sanitizer CI build started failing for unknown
    reason. The failure is occurring in the make program before even running
    any tests in 'make check.'
    
    Take the following steps to attempt to address the issue:
    
     - The asan build currently runs on Fedora 34, which is getting old
       at this point. Update the sanitizer run to use Fedora 36.
    
     - Drop the LD_PRELOAD of the libasan library, which seems to be
       causing the failure in some unrelated programs not compiled with
       -fsanitize=address (a guess).
    
     - Add 'verify_asan_link_order=false' to ASAN_OPTIONS to avoid libasan
       complaints about link order. This is only important if malloc, free,
       etc., are replaced by libs. In that case libasan _must_ be first in
       the link order.
       See https://github.com/google/sanitizers/wiki/AddressSanitizerFlags
    
     - Update -j2 to -j4 (github runners now have 4 vcpus)
    grondo committed Mar 16, 2024
    Configuration menu
    Copy the full SHA
    fbc96ce View commit details
    Browse the repository at this point in the history