File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
.github/actions/Build_and_Test_cppyy Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -149,13 +149,14 @@ runs:
149
149
# Install CppInterOp
150
150
cd $env:CPPINTEROP_BUILD_DIR
151
151
cmake --build . --target install --parallel ${{ env.ncpus }}
152
+ find.exe . -name "*.dll"
153
+ find.exe . -name "*.lib"
152
154
cd ..\cppyy-backend\build\
153
155
# Build and Install cppyy-backend
154
156
cmake -DCppInterOp_DIR=$env:CPPINTEROP_DIR -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} ..
155
157
cmake --build . --config ${{ env.BUILD_TYPE }} --parallel ${{ env.ncpus }}
156
- find.exe . -name "*.dll"
157
- find.exe . -name "*.lib"
158
- cp Release\libcppyy-backend.lib $env:CPPINTEROP_DIR\lib\
158
+ find.exe . -name "*"
159
+ cp Release\libcppyy-backend.dll $env:CPPINTEROP_DIR\lib\
159
160
cd ..
160
161
161
162
- name : Install CPyCppyy
You can’t perform that action at this time.
0 commit comments