From 342a5660d5d929a9b977269b75a315b1628811ab Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Fri, 19 Mar 2021 15:06:34 +0000 Subject: [PATCH] TT#111150 Do not override the while build flags on unit-test workflow We need to pass these on through environment otherwise we are overriding the whole build flags. Change-Id: I3fd856af2624f84afe73427dfb359e8bfc3acaa8 Fixes: commit f791bf03f9cc1c561139c9701fe95b69302503e9 --- .github/workflows/unit-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 3b83f1fc0..6a83949fe 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -24,4 +24,4 @@ jobs: - name: Run unit tests with sanitizers enabled run: | - make CFLAGS="$FLAGS" LDFLAGS="$FLAGS" check + CFLAGS="$FLAGS" LDFLAGS="$FLAGS" make check