From e9f70a6990d72c82a33d26f0f8204107e592c9d2 Mon Sep 17 00:00:00 2001 From: Luc Shi Date: Fri, 6 Jan 2023 14:52:43 +0800 Subject: [PATCH] build: add vtune profiling enabling flag in default Linux buiding CI --- .github/workflows/test-linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-linux.yml b/.github/workflows/test-linux.yml index 2a1614e7e8cba1..51885b43d28d66 100644 --- a/.github/workflows/test-linux.yml +++ b/.github/workflows/test-linux.yml @@ -44,6 +44,6 @@ jobs: - name: Environment Information run: npx envinfo - name: Build - run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn" + run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn --enable-vtune-profiling" - name: Test run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9"