From 539fcd0fc302fd3ec4eaf105b9097ec852eb06a8 Mon Sep 17 00:00:00 2001 From: wmayer Date: Thu, 21 Mar 2024 17:15:49 +0100 Subject: [PATCH] CI: Add new test target --- .../workflows/actions/runCPPTests/runAllTests/action.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/actions/runCPPTests/runAllTests/action.yml b/.github/workflows/actions/runCPPTests/runAllTests/action.yml index bc6b3972ba..3cd1376ee1 100644 --- a/.github/workflows/actions/runCPPTests/runAllTests/action.yml +++ b/.github/workflows/actions/runCPPTests/runAllTests/action.yml @@ -68,6 +68,13 @@ runs: testCommand: ${{ inputs.builddir }}/tests/Part_tests_run --gtest_output=json:${{ inputs.reportdir }}part_gtest_results.json testLogFile: ${{ inputs.reportdir }}Part_gtest_test_log.txt testName: Part + - name: C++ PartDesign tests + id: partdesign + uses: ./.github/workflows/actions/runCPPTests/runSingleTest + with: + testCommand: ${{ inputs.builddir }}/tests/PartDesign_tests_run --gtest_output=json:${{ inputs.reportdir }}partdesign_gtest_results.json + testLogFile: ${{ inputs.reportdir }}PartDesign_gtest_test_log.txt + testName: PartDesign - name: C++ Points tests id: points uses: ./.github/workflows/actions/runCPPTests/runSingleTest