Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Lint Commit Messages
description: Use commitlint to enforce semantic versionning

on: pull_request

permissions:
contents: read
pull-requests: read

jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: wagoid/commitlint-github-action@v6
2 changes: 1 addition & 1 deletion vtk_sdk_python_wheel_helper/VTKSDKModuleBuilder.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ function(vtksdk_build_modules package_name)

# Fixup RPATHs
if(APPLE)
list(APPEND CMAKE_INSTALL_RPATH "@loader_path/../vtkmodules" "@loader_path/third_party.libs" "@loader_path")
list(APPEND CMAKE_INSTALL_RPATH "@loader_path/../vtkmodules/.dylibs" "@loader_path/third_party.libs" "@loader_path")
foreach(dep IN LISTS arg_DEPENDENCIES)
list(APPEND CMAKE_INSTALL_RPATH "@loader_path/../${dep}" "@loader_path/../${dep}/third_party.libs")
endforeach()
Expand Down