From e08efb3b947165701342ef4ad18eeb6177a23307 Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Tue, 23 Sep 2025 15:37:21 +1200 Subject: [PATCH] test-sanitizers.yml: Use makefile.conf --- .github/workflows/test-sanitizers.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-sanitizers.yml b/.github/workflows/test-sanitizers.yml index 1e028e285..37be086a0 100644 --- a/.github/workflows/test-sanitizers.yml +++ b/.github/workflows/test-sanitizers.yml @@ -97,7 +97,9 @@ jobs: run: | make config-$CC echo 'SANITIZER = ${{ matrix.sanitizer }}' >> Makefile.conf - make -j$procs ENABLE_LTO=1 + echo 'ENABLE_LTO = 1' >> Makefile.conf + echo 'ENABLE_LIBYOSYS = 1' >> Makefile.conf + make -j$procs - name: Log yosys-config output run: | @@ -106,7 +108,7 @@ jobs: - name: Run tests shell: bash run: | - make -j$procs test TARGETS= EXTRA_TARGETS= CONFIG=$CC + make -j$procs test TARGETS= EXTRA_TARGETS= - name: Report errors if: ${{ failure() }} @@ -117,4 +119,4 @@ jobs: - name: Run unit tests shell: bash run: | - make -j$procs unit-test CONFIG=$CC ENABLE_LIBYOSYS=1 + make -j$procs unit-test