File tree 3 files changed +16
-10
lines changed
3 files changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ jobs:
131
131
vcs_repos_file : ${{ github.workspace }}\src\fastdds\.github\workflows\config\fastdds_test.repos
132
132
destination_workspace : src
133
133
skip_existing : ' true'
134
-
134
+
135
135
- name : Install VCTools for Dumpbin
136
136
shell : pwsh
137
137
run :
@@ -156,7 +156,9 @@ jobs:
156
156
workspace : ${{ github.workspace }}
157
157
158
158
- name : Run Dumpbin
159
- " & C:\P rogram Files (x86)\M icrosoft Visual Studio\2 019\B uildTools\V C\T ools\M SVC\1 4.29.30133\b in\H ostx64\x64 \d umpbin.exe ${{ github.workspace }}\b uild\f astdds\e xamples\c pp\h ello_world\R elease\h ello_world.exe"
159
+ shell : pwsh
160
+ run :
161
+ C:\"Program Files (x86)"\"Microsoft Visual Studio"\2019\BuildTools\VC\Tools\MSVC\14.29.30133\bin\Hostx64\x64\dumpbin.exe ${{ github.workspace }}\build\fastdds\examples\cpp\hello_world\RelWithDebInfo\hello_world.exe
160
162
161
163
- name : Test
162
164
if : ${{ !contains(github.event.pull_request.labels.*.name, 'no-test') }}
Original file line number Diff line number Diff line change @@ -49,12 +49,16 @@ elseif(WIN32)
49
49
50
50
# Temporary, in the is installed here
51
51
set (SHELL_EXECUTABLE "C:/Program Files/PowerShell/latest/pwsh.exe" )
52
+ set (CMAKE_INSTALL_PREFIX_C "C:/a/Fast-DDS/Fast-DDS/install/fastdds" )
53
+ set (PROJECT_BINARY_DIR_C "C:/a/Fast-DDS/Fast-DDS/build/fastdds" )
52
54
53
55
set (FILE_EXTENSION ".exe" )
54
56
set (DOCKER_IMAGE_NAME "windows-testing" )
55
57
56
58
cmake_path(GET fastcdr_LIB_DIR PARENT_PATH fastcdr_INSTALL_DIR)
57
59
60
+ set (fastcdr_INSTALL_DIR_C "C:/a/Fast-DDS/Fast-DDS/install/fastcdr" )
61
+
58
62
set (WIN_DOCKERFILE ${CMAKE_CURRENT_LIST_DIR} /windows/Dockerfile)
59
63
60
64
message (STATUS "PROJECT_BINARY_DIR ${PROJECT_BINARY_DIR} " )
Original file line number Diff line number Diff line change @@ -16,21 +16,21 @@ services:
16
16
waitset-subscriber :
17
17
image : @DOCKER_IMAGE_NAME@
18
18
volumes :
19
- - @PROJECT_BINARY_DIR@:@PROJECT_BINARY_DIR @
19
+ - @PROJECT_BINARY_DIR@:@PROJECT_BINARY_DIR_C @
20
20
environment :
21
- PATH : C:/Program Files/OpenSSL-Win64;@CMAKE_INSTALL_PREFIX @/bin;@fastcdr_INSTALL_DIR @/bin;C:/Windows/System32;C:/Windows/System32/downlevel;
22
- EXAMPLE_DIR : @PROJECT_BINARY_DIR @/examples/cpp/hello_world/RelWithDebInfo
23
- FASTDDS_DEFAULT_PROFILES_FILE : @PROJECT_BINARY_DIR @/examples/cpp/hello_world/hello_world_profile.xml
21
+ PATH : C:/Program Files/OpenSSL-Win64;@CMAKE_INSTALL_PREFIX_C @/bin;@fastcdr_INSTALL_DIR_C @/bin;C:/Windows/System32;C:/Windows/System32/downlevel;
22
+ EXAMPLE_DIR : @PROJECT_BINARY_DIR_C @/examples/cpp/hello_world/RelWithDebInfo
23
+ FASTDDS_DEFAULT_PROFILES_FILE : @PROJECT_BINARY_DIR_C @/examples/cpp/hello_world/hello_world_profile.xml
24
24
command : @SHELL_EXECUTABLE@ -c "& ls;echo "Testing STDOUT";"
25
25
26
26
subscriber-publisher :
27
27
image : @DOCKER_IMAGE_NAME@
28
28
volumes :
29
- - @PROJECT_BINARY_DIR@:@PROJECT_BINARY_DIR @
29
+ - @PROJECT_BINARY_DIR@:@PROJECT_BINARY_DIR_C @
30
30
environment :
31
- PATH : C:/Program Files/OpenSSL-Win64;@CMAKE_INSTALL_PREFIX @/bin;@fastcdr_INSTALL_DIR @/bin;C:/Windows/System32;C:/Windows/System32/downlevel;
32
- EXAMPLE_DIR : @PROJECT_BINARY_DIR @/examples/cpp/hello_world/RelWithDebInfo
33
- FASTDDS_DEFAULT_PROFILES_FILE : @PROJECT_BINARY_DIR @/examples/cpp/hello_world/hello_world_profile.xml
31
+ PATH : C:/Program Files/OpenSSL-Win64;@CMAKE_INSTALL_PREFIX_C @/bin;@fastcdr_INSTALL_DIR_C @/bin;C:/Windows/System32;C:/Windows/System32/downlevel;
32
+ EXAMPLE_DIR : @PROJECT_BINARY_DIR_C @/examples/cpp/hello_world/RelWithDebInfo
33
+ FASTDDS_DEFAULT_PROFILES_FILE : @PROJECT_BINARY_DIR_C @/examples/cpp/hello_world/hello_world_profile.xml
34
34
command : @SHELL_EXECUTABLE@ -c "& ls;echo "Testing STDOUT";"
35
35
depends_on :
36
36
- waitset-subscriber
You can’t perform that action at this time.
0 commit comments