From ccd3986b3c77636d71b5aeac040a77e71170233e Mon Sep 17 00:00:00 2001 From: rusEFI LLC Date: Wed, 24 Apr 2024 10:30:41 -0400 Subject: [PATCH] only: Handle docs-enums separately just to make github logs more readable --- .github/workflows/build-unit-tests.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build-unit-tests.yaml b/.github/workflows/build-unit-tests.yaml index 8fd38bd662..9442445f97 100644 --- a/.github/workflows/build-unit-tests.yaml +++ b/.github/workflows/build-unit-tests.yaml @@ -47,6 +47,14 @@ jobs: # NOTE: on mac, this is actually symlink'd to clang, not gcc, but that's ok - we want to build on both run: gcc -v + - name: Handle docs-enums separately just to make github logs more readable + working-directory: ./unit_tests/ + run: make -j4 docs-enums + + - name: Handle configs separately just to make github logs more readable + working-directory: ./unit_tests/ + run: make -j4 config + - name: Build Tests working-directory: ./unit_tests/ run: make -j4 COVERAGE=yes