Skip to content

Commit

Permalink
Modify deploy directory.
Browse files Browse the repository at this point in the history
Signed-off-by: Franco Cipollone <franco.c@ekumenlabs.com>
  • Loading branch information
francocipollone committed Aug 16, 2023
1 parent 573d74a commit 391223c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,18 +63,18 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: ${{ env.PACKAGE_NAME }}-wheel
path: ${{ env.ROS_WS }}/build/${{ env.PACKAGE_NAME }}/bin/wheel/*.whl
path: ${{ env.ROS_WS }}/build/${{ env.PACKAGE_NAME }}/wheel/*.whl

- name: auditwheel repair wheel
shell: bash
working-directory: ${{ env.ROS_WS }}
run: |
. /opt/ros/${ROS_DISTRO}/setup.bash;
. install/setup.bash;
auditwheel repair build/${PACKAGE_NAME}/bin/wheel/*.whl --plat linux_x86_64 -w build/${PACKAGE_NAME}/bin/wheel/auditwheel_repaired
auditwheel repair build/${PACKAGE_NAME}/wheel/*.whl --plat linux_x86_64 -w build/${PACKAGE_NAME}/wheel/auditwheel_repaired
- name: upload repaired wheel
uses: actions/upload-artifact@v2
with:
name: ${{ env.PACKAGE_NAME }}-repaired-wheel
path: ${{ env.ROS_WS }}/build/${{ env.PACKAGE_NAME }}/bin/wheel/auditwheel_repaired/*.whl
path: ${{ env.ROS_WS }}/build/${{ env.PACKAGE_NAME }}/wheel/auditwheel_repaired/*.whl
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ if (WHEEL_GENERATION)
FetchContent_MakeAvailable(python-cmake-wheel)
list(APPEND CMAKE_MODULE_PATH "${python-cmake-wheel_SOURCE_DIR}")
include(python-wheel)
set(WHEEL_DEPLOY_DIRECTORY "${CMAKE_BINARY_DIR}/bin/wheel")
set(WHEEL_DEPLOY_DIRECTORY "${CMAKE_BINARY_DIR}/wheel")
else()
message(STATUS "Wheel generation - Disabled")
endif()
Expand Down

0 comments on commit 391223c

Please sign in to comment.