Skip to content

Commit

Permalink
Add support for latest Fedora (#591)
Browse files Browse the repository at this point in the history
  • Loading branch information
awawa-dev authored Jul 28, 2023
1 parent 8f4e4b6 commit 95de36c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/push-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ jobs:
- dockerImage: x86_64
linuxVersion: ArchLinux
dockerName: Arch Linux (x86_64)
platform: linux
platform: linux
- dockerImage: x86_64
linuxVersion: Fedora_38
dockerName: Fedora 38 (x86_64)
platform: linux
steps:
# checkout
- uses: actions/checkout@v3
Expand Down Expand Up @@ -96,6 +100,7 @@ jobs:
path: |
deploy/Hyper*.deb
deploy/Hyper*.zst
deploy/Hyper*.rpm
######################
####### macOS ########
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/upload-to-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ jobs:
arch: amd64
platform: linux
niceName: Ubuntu 23.04
- dockerImage: x86_64
linuxVersion: Fedora_38
dockerName: Fedora 38 (x86_64)
arch: amd64
platform: linux
niceName: Fedora 38

steps:
# checkout
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ endif()
if (UNIX AND NOT APPLE)
SET(CMAKE_SKIP_BUILD_RPATH FALSE)
SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_RPATH}:$ORIGIN/../lib")
list(APPEND CMAKE_INSTALL_RPATH "$ORIGIN/../lib")
SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
endif ()

Expand Down

0 comments on commit 95de36c

Please sign in to comment.