Skip to content

Commit

Permalink
dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
mradugin authored Jul 13, 2024
1 parent 9986cae commit ba7509f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: |
ccache --show-stats
cmake -B ${{ steps.strings.outputs.build-output-dir }} -S ${{ steps.strings.outputs.source-dir }}
cmake -B build -S ${{ steps.strings.outputs.source-dir }}
ccache --show-stats
# -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
# -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
Expand All @@ -83,14 +83,14 @@ jobs:
- name: Build1
# 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: |
cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} --verbose
cmake --build build --config ${{ matrix.build_type }} --verbose
ccache --show-stats
- name: Build
# 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: |
cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} --target clean --verbose
cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} --verbose
cmake --build build --config ${{ matrix.build_type }} --target clean --verbose
cmake --build build --config ${{ matrix.build_type }} --verbose
ccache --show-stats
# - name: Test
Expand Down

0 comments on commit ba7509f

Please sign in to comment.