From bc61565af7e9d36eeaa591a231eb763e6652771e Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Tue, 20 Dec 2022 12:27:02 -0600 Subject: [PATCH] build: fix utils tests on win32 (#4422) tests depend on utils, so if we unconditionally enable tests we need to do the same for utils --- .github/workflows/actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 10f5c09ae..e80ef79ef 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -375,7 +375,7 @@ jobs: -DENABLE_MAC=OFF ` -DENABLE_QT=${{ (needs.what-to-make.outputs.make-dist == 'true' || needs.what-to-make.outputs.make-qt == 'true') && 'ON' || 'OFF' }} ` -DENABLE_TESTS=ON ` - -DENABLE_UTILS=${{ (needs.what-to-make.outputs.make-dist == 'true' || needs.what-to-make.outputs.make-utils == 'true') && 'ON' || 'OFF' }} ` + -DENABLE_UTILS=ON ` -DENABLE_WEB=OFF ` -DENABLE_WERROR=ON ` -DRUN_CLANG_TIDY=OFF