Skip to content

Commit

Permalink
CI: Specify --config Release in Github Actions worklfow on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
dmatveev committed Oct 10, 2023
1 parent 10242ea commit b106b3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
if [ "$RUNNER_OS" == "Windows" ]; then
cmake -DENABLE_ADE_TESTING=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=${{ matrix.version }} ..
cmake --build . --target GTest
cmake --build .
cmake --build . --target GTest --config Release
cmake --build . --config Release
elif [ "$RUNNER_OS" == "Linux" ]; then
cmake -DENABLE_ADE_TESTING=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=${{ matrix.version }} ..
Expand Down

0 comments on commit b106b3c

Please sign in to comment.