diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-10-11 19:21:47 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-10-11 19:21:47 +0200 |
commit | 859a585bdf9baa257c08a50895d9829171a5ad46 (patch) | |
tree | 11ca943c2cf1a006eea1955164e8650b46b7e297 /.github/workflows/main.yml | |
parent | Merge branch 'ab/retire-git-config-key-is-valid' (diff) | |
parent | tests: add a test mode for SANITIZE=leak, run it in CI (diff) | |
download | git-859a585bdf9baa257c08a50895d9829171a5ad46.tar.xz git-859a585bdf9baa257c08a50895d9829171a5ad46.zip |
Merge branch 'ab/sanitize-leak-ci'
CI learns to run the leak sanitizer builds.
* ab/sanitize-leak-ci:
tests: add a test mode for SANITIZE=leak, run it in CI
Makefile: add SANITIZE=leak flag to GIT-BUILD-OPTIONS
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r-- | .github/workflows/main.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b053b01c66..4728168478 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -232,6 +232,9 @@ jobs: - jobname: linux-gcc-default cc: gcc pool: ubuntu-latest + - jobname: linux-leaks + cc: gcc + pool: ubuntu-latest env: CC: ${{matrix.vector.cc}} jobname: ${{matrix.vector.jobname}} |