Skip to content

Commit

Permalink
Improvements in workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderlvov committed Jun 15, 2024
1 parent 4f3c65a commit 70f8f9e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/gtest_multiple_platforms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,12 @@ jobs:
-S ${{ github.workspace }}
- name: Build
working-directory: ${{ steps.strings.outputs.build-output-dir }}
# Build your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
run: make -j 8 #cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }}
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }}

- name: Compile
working-directory: ${{ steps.strings.outputs.build-output-dir }}
run: ls && make -j 8

- name: Run generated tests
working-directory: ${{ steps.strings.outputs.build-output-dir }}
Expand Down

0 comments on commit 70f8f9e

Please sign in to comment.