Skip to content

Commit abeed56

Browse files
authored
Merge branch 'AcademySoftwareFoundation:main' into R3D
2 parents f4e67d9 + a440e4b commit abeed56

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/wheel.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,25 @@ permissions:
1414
on:
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 * * *"

src/cmake/compiler.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)