File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -14,21 +14,25 @@ permissions:
1414on :
1515 push :
1616 # Workflow run on tags for v3 only, or pre-tagged pushes of release, or
17- # dev-3.* branches.
17+ # dev-3.* branches. Also if the branch name itself contains the substrings
18+ # 'wheel' or 'python'.
1819 tags :
1920 - v3.*
2021 branches :
2122 - release
2223 - dev-3.*
24+ - " *wheel*"
25+ - " *python*"
2326 pull_request :
24- # Workflow run on pull_request only when related files change.
27+ # Workflow run on pull_request only when related files change, or when the
28+ # branch name itself contains the substrings 'wheel' or 'python'.
2529 paths :
2630 - .github/workflows/wheel.yml
2731 - pyproject.toml
2832 - src/python/*.py
2933 - src/python/*.h
3034 - src/python/*.cpp
31- - src/cmake/pythonutils .cmake
35+ - src/cmake/* .cmake
3236 schedule :
3337 # Nightly build
3438 - cron : " 0 8 * * *"
Original file line number Diff line number Diff line change @@ -691,6 +691,7 @@ else ()
691691 set (BASEPOINT $ORIGIN)
692692 endif ()
693693 set (CMAKE_INSTALL_RPATH ${BASEPOINT}
694+ ${BASEPOINT} /${CMAKE_INSTALL_LIBDIR}
694695 ${BASEPOINT} /../${CMAKE_INSTALL_LIBDIR} )
695696 endif ()
696697 # add the automatically determined parts of the RPATH that
You can’t perform that action at this time.
0 commit comments