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
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
options: --gpus=all --ipc=host --runtime=nvidia

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install libraries
Comment thread
martindevans marked this conversation as resolved.
run: |
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
set http_proxy=127.0.0.1:7891
set https_proxy=127.0.0.1:7891

- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Clear package cache
run: dotnet clean LLamaSharp.sln && dotnet nuget locals all --clear
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
arch: arm64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
repository: ggerganov/llama.cpp
fetch-depth: 0
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
git \
linux-headers \
g++
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
repository: ggerganov/llama.cpp
fetch-depth: 0
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
defines: '-DGGML_AVX512=ON -DGGML_AVX512_VBMI=ON -DGGML_AVX512_VNNI=ON'
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
repository: ggerganov/llama.cpp
fetch-depth: 0
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
defines: '-T ClangCL -DCMAKE_GENERATOR_PLATFORM=ARM64 -DGGML_NATIVE=OFF'
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
repository: ggerganov/llama.cpp
fetch-depth: 0
Expand Down Expand Up @@ -286,7 +286,7 @@ jobs:
steps:
- name: Clone
id: checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ggerganov/llama.cpp
fetch-depth: 0
Expand Down Expand Up @@ -406,7 +406,7 @@ jobs:
steps:
- name: Clone
id: checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ggerganov/llama.cpp
fetch-depth: 0
Expand Down Expand Up @@ -538,7 +538,7 @@ jobs:
MACOS_RPATH_DEFINE: "-DCMAKE_INSTALL_RPATH='@loader_path' -DCMAKE_BUILD_WITH_INSTALL_RPATH=ON"
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
repository: ggerganov/llama.cpp
fetch-depth: 0
Expand Down Expand Up @@ -610,7 +610,7 @@ jobs:
defines: '-DANDROID_ABI=arm64-v8a -DCMAKE_C_FLAGS=-march=armv8.7a -DCMAKE_C_FLAGS=-march=armv8.7a -DGGML_OPENMP=OFF -DLLAMA_BUILD_SERVER=OFF'
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
repository: ggerganov/llama.cpp
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
./dotnet-install.sh --runtime dotnet --channel 8.0 --install-dir /usr/share/dotnet
rm dotnet-install.sh

- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/setup-dotnet@v4
if: ${{ matrix.build != 'linux-musl-x64-cpu' }}
Comment thread
martindevans marked this conversation as resolved.
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-minor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Configure Git Credentials
Comment thread
martindevans marked this conversation as resolved.
run: |
git config user.name Rinne
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Configure Git Credentials
Comment thread
martindevans marked this conversation as resolved.
run: |
git config user.name Rinne
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_api_references.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/setup-dotnet@v4
Comment thread
martindevans marked this conversation as resolved.
with:
dotnet-version: |
Expand Down
Loading