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
44 changes: 24 additions & 20 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -346,11 +346,12 @@ jobs:
id: checkout
uses: actions/checkout@v4

- name: ccache
uses: ggml-org/[email protected]
with:
key: ubuntu-latest-cmake-rpc
evict-old-files: 1d
# Reduce false pass/failure on CI
# - name: ccache
# uses: ggml-org/[email protected]
# with:
# key: ubuntu-latest-cmake-rpc
# evict-old-files: 1d

- name: Dependencies
id: depends
Expand Down Expand Up @@ -379,11 +380,12 @@ jobs:
id: checkout
uses: actions/checkout@v4

- name: ccache
uses: ggml-org/[email protected]
with:
key: ubuntu-22-cmake-vulkan
evict-old-files: 1d
# Reduce false pass/failure on CI
# - name: ccache
# uses: ggml-org/[email protected]
# with:
# key: ubuntu-22-cmake-vulkan
# evict-old-files: 1d

- name: Dependencies
id: depends
Expand Down Expand Up @@ -416,11 +418,12 @@ jobs:
id: checkout
uses: actions/checkout@v4

- name: ccache
uses: ggml-org/[email protected]
with:
key: ubuntu-22-cmake-webgpu
evict-old-files: 1d
# Reduce false pass/failure on CI
# - name: ccache
# uses: ggml-org/[email protected]
# with:
# key: ubuntu-22-cmake-webgpu
# evict-old-files: 1d

- name: Vulkan SDK Dependencies
id: vulkan-depends
Expand Down Expand Up @@ -473,11 +476,12 @@ jobs:
sudo apt-get update
sudo apt-get install -y build-essential git cmake rocblas-dev hipblas-dev libcurl4-openssl-dev

- name: ccache
uses: ggml-org/[email protected]
with:
key: ubuntu-22-cmake-hip
evict-old-files: 1d
# Reduce false pass/failure on CI
# - name: ccache
# uses: ggml-org/[email protected]
# with:
# key: ubuntu-22-cmake-hip
# evict-old-files: 1d

- name: Build with native CMake HIP support
id: cmake_build
Expand Down
2 changes: 1 addition & 1 deletion ggml/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ function(ggml_add_backend_library backend)
else()
install(TARGETS ${backend}
EXPORT ggml-targets
LIBRARY DESTINATION ${CMAKE_INSTALL_BINDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
endif()
else()
Expand Down
Loading