Skip to content

Commit 135f0c1

Browse files
committed
Fixes to windows runners configuration in github actions.
1 parent e75ac43 commit 135f0c1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/actions_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ jobs:
328328
working-directory: ${{runner.workspace}}/build
329329
run: |
330330
cmake %GITHUB_WORKSPACE% -A ${{matrix.arch}} -DCMAKE_BUILD_TYPE=${{matrix.type}} -DCMAKE_INSTALL_PREFIX=install ^
331-
-DCMAKE_PREFIX_PATH=${{runner.workspace}}/build/install -DCMAKE_CXX_STANDARD=${{matrix.cpp}} ^
331+
-DCMAKE_PREFIX_PATH="${{runner.workspace}}/build/install;%BOOST_DIR%" -DCMAKE_CXX_STANDARD=${{matrix.cpp}} ^
332332
-DCMAKE_POLICY_DEFAULT_CMP0167=NEW ^
333333
-DCC_MQTT5_BUILD_UNIT_TESTS=ON ^
334334
-DCC_MQTT5_CUSTOM_CLIENT_CONFIG_FILES="%GITHUB_WORKSPACE%/client/lib/script/BareMetalTestConfig.cmake;%GITHUB_WORKSPACE%/client/lib/script/Qos0TestConfig.cmake;%GITHUB_WORKSPACE%/client/lib/script/Qos1TestConfig.cmake" ^
@@ -388,7 +388,7 @@ jobs:
388388
working-directory: ${{runner.workspace}}/build
389389
run: |
390390
cmake %GITHUB_WORKSPACE% -A ${{matrix.arch}} -DCMAKE_BUILD_TYPE=${{matrix.type}} -DCMAKE_INSTALL_PREFIX=install ^
391-
-DCMAKE_PREFIX_PATH=${{runner.workspace}}/build/install -DCMAKE_CXX_STANDARD=${{matrix.cpp}} ^
391+
-DCMAKE_PREFIX_PATH="${{runner.workspace}}/build/install;%BOOST_DIR%" -DCMAKE_CXX_STANDARD=${{matrix.cpp}} ^
392392
-DCMAKE_POLICY_DEFAULT_CMP0167=NEW ^
393393
-DCC_MQTT5_BUILD_UNIT_TESTS=ON ^
394394
-DCC_MQTT5_CUSTOM_CLIENT_CONFIG_FILES="%GITHUB_WORKSPACE%/client/lib/script/BareMetalTestConfig.cmake;%GITHUB_WORKSPACE%/client/lib/script/Qos0TestConfig.cmake;%GITHUB_WORKSPACE%/client/lib/script/Qos1TestConfig.cmake" ^

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ to parse the command line arguments and
4747
the events loop and manage network connection(s)).
4848

4949
# How to Build
50-
This project has several external dependencies. It is highly recommended to use
50+
This project has several external dependencies. It is highly recommended to use the
5151
[cc.cmake](https://github.com/commschamp/cc.cmake) project to bring in all the
5252
necessary components of the [CommsChampion Ecosystem](https://commschamp.github.io)
5353
(including this one as well) into a third party project.

0 commit comments

Comments
 (0)