Skip to content

Commit

Permalink
Fix armv6l packages naming 3
Browse files Browse the repository at this point in the history
  • Loading branch information
awawa-dev committed Feb 9, 2025
1 parent 90f38b1 commit c4439f7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Wake-up docker
if: matrix.runner == 'ubuntu-24.04-arm'
run: |
(sudo systemctl start docker) || (echo "Retrying docker" && sleep 5 && sudo systemctl start docker)
(sudo systemctl start docker) || (echo "Retrying docker" && sleep 5 && sudo systemctl start docker && sleep 5)
# checkout
- uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload-to-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Wake-up docker
if: matrix.runner == 'ubuntu-24.04-arm'
run: |
(sudo systemctl start docker) || (echo "Retrying docker" && sleep 5 && sudo systemctl start docker)
(sudo systemctl start docker) || (echo "Retrying docker" && sleep 5 && sudo systemctl start docker && sleep 5)
# checkout
- uses: actions/[email protected]
Expand Down
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ message( STATUS "CMake Version: ${CMAKE_VERSION}" )

PROJECT(HyperHdr)

if (OVERRIDE_ARCHITECTURE)
SET ( CMAKE_SYSTEM_PROCESSOR "${OVERRIDE_ARCHITECTURE}")
endif(OVERRIDE_ARCHITECTURE)

set(OUR_CMAKE_MODULES ${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake_modules)
set(CMAKE_MODULE_PATH ${OUR_CMAKE_MODULES} ${CMAKE_MODULE_PATH})
Expand Down
3 changes: 0 additions & 3 deletions cmake/packages.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,6 @@ endif()
SET ( CPACK_PACKAGE_NAME "HyperHDR" )
SET ( CPACK_PACKAGE_DESCRIPTION_SUMMARY "HyperHDR is an open source ambient light implementation" )
SET ( CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_SOURCE_DIR}/README.md" )
if (OVERRIDE_ARCHITECTURE)
SET ( CMAKE_SYSTEM_PROCESSOR "${OVERRIDE_ARCHITECTURE}")
endif(OVERRIDE_ARCHITECTURE)
SET ( CPACK_PACKAGE_FILE_NAME "HyperHDR-${HYPERHDR_VERSION}-${CMAKE_SYSTEM_NAME}-${CMAKE_SYSTEM_PROCESSOR}")

SET ( CPACK_PACKAGE_CONTACT "[email protected]")
Expand Down

0 comments on commit c4439f7

Please sign in to comment.