From: Charles Giessen Date: Tue, 18 Jan 2022 22:54:20 +0000 (-0700) Subject: Enable Address Sanitizser in Github Actions X-Git-Tag: upstream/v1.3.207~93 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=60d17fe6c65befa0a738b6c33da2eb0670055f3b;p=platform%2Fupstream%2FVulkan-Loader.git Enable Address Sanitizser in Github Actions --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 78110779..84db5546 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,7 +47,7 @@ jobs: - run: sudo apt install libwayland-dev libxrandr-dev - name: Generate build files - run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=${{matrix.config}} -DBUILD_TESTS=On -DUPDATE_DEPS=ON + run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=${{matrix.config}} -DBUILD_TESTS=On -DUPDATE_DEPS=ON -DTEST_USE_ADDRESS_SANITIZER=ON env: CC: ${{matrix.cc}} CXX: ${{matrix.cxx}} @@ -111,7 +111,7 @@ jobs: python-version: '3.7' - name: Generate build files - run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=${{matrix.config}} -DBUILD_TESTS=On -DUPDATE_DEPS=ON + run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=${{matrix.config}} -DBUILD_TESTS=On -DUPDATE_DEPS=ON -DTEST_USE_ADDRESS_SANITIZER=ON - name: Build the loader run: make -C build