From 9269a4e13bcd5ee23f65b6daeb1ae15cdc038719 Mon Sep 17 00:00:00 2001 From: Lukas Aldershaab Date: Thu, 6 Apr 2023 22:07:25 +0200 Subject: [PATCH] Target the Install build --- .github/workflows/cmake.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index b5b1c0834..9b5af2ea2 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -54,7 +54,7 @@ jobs: - name: Build # Build your program with the given configuration - run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} + run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target install - name: Test run: | @@ -64,6 +64,8 @@ jobs: else ./Torque3D runTests.tscript fi + shell: bash + - name: Publish Test Report uses: mikepenz/action-junit-report@v3