On Mon, Oct 10, 2022 at 05:21:38PM -0700, Junio C Hamano wrote: > diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml > index 831f4df56c..92d27db0b9 100644 > --- a/.github/workflows/main.yml > +++ b/.github/workflows/main.yml > @@ -251,6 +251,9 @@ jobs: > - jobname: linux-leaks > cc: gcc > pool: ubuntu-latest > + - jobname: linux-sanitize > + cc: gcc > + pool: ubuntu-latest > env: > CC: ${{matrix.vector.cc}} > CC_PACKAGE: ${{matrix.vector.cc_package}} > diff --git a/ci/lib.sh b/ci/lib.sh > index 1b0cc2b57d..c9c4982e21 100755 > --- a/ci/lib.sh > +++ b/ci/lib.sh > @@ -278,6 +278,9 @@ linux-leaks) > export GIT_TEST_PASSING_SANITIZE_LEAK=true > export GIT_TEST_SANITIZE_LEAK_LOG=true > ;; > +linux-sanitize) > + export SANITIZE=address,undefined > + ;; Looks fine to me (and I obviously endorse the goal :) ). -Peff