Skip to content

Commit

Permalink
Adjust diesel schema check for build with sanitizers (#10711)
Browse files Browse the repository at this point in the history
We need to disable the detection of memory leaks when running
``neon_local init` for build with sanitizers to avoid an error thrown by
AddressSanitizer.
  • Loading branch information
alexanderlaw authored Feb 7, 2025
1 parent e73d681 commit de05258
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/_build-and-test-locally.yml
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ jobs:
DATABASE_URL: postgresql://localhost:1235/storage_controller
POSTGRES_DISTRIB_DIR: /tmp/neon/pg_install
run: |
export ASAN_OPTIONS=detect_leaks=0
/tmp/neon/bin/neon_local init
/tmp/neon/bin/neon_local storage_controller start
Expand Down

1 comment on commit de05258

@github-actions
Copy link

Choose a reason for hiding this comment

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

7576 tests run: 7211 passed, 0 failed, 365 skipped (full report)


Flaky tests (2)

Postgres 17

Postgres 14

Code coverage* (full report)

  • functions: 33.3% (8592 of 25823 functions)
  • lines: 49.1% (72338 of 147256 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
de05258 at 2025-02-07T11:28:13.084Z :recycle:

Please sign in to comment.