File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 7474 if : runner.os == 'macOS'
7575 run : |
7676 brew install protobuf
77- - name : Install Protobuf Compiler Mac
77+ - name : Install Protobuf Compiler Windows
7878 if : runner.os == 'Windows'
79- run : |
80- winget install protobuf
79+ run : winget install --id Google.Protobuf
8180 - name : Print architecture # debug
8281 run : |
8382 uname -m
9089 if : runner.os == 'Windows'
9190 uses : ilammy/msvc-dev-cmd@v1
9291
92+ - name : Setup Winget
93+ if : runner.os == 'Windows'
94+ uses : actions/setup-winget@v1
95+
9396 - name : Build Google DP Unix
9497 if : runner.os != 'Windows'
9598 timeout-minutes : 20
Original file line number Diff line number Diff line change @@ -54,4 +54,6 @@ target_link_libraries(_pydp PUBLIC dp_algorithms dp_protos
5454 absl::flat_hash_set
5555)
5656
57- target_compile_options (_pydp PRIVATE -Wno-deprecated-declarations -Wdeprecated-declarations)
57+ if (NOT WIN32 )
58+ target_compile_options (_pydp PRIVATE -Wno-deprecated-declarations -Wdeprecated-declarations)
59+ endif ()
You can’t perform that action at this time.
0 commit comments