forked from ggerganov/llama.cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into layla-build
- Loading branch information
Showing
65 changed files
with
6,841 additions
and
5,349 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
name: Nix CI | ||
|
||
on: | ||
workflow_dispatch: # allows manual triggering | ||
push: | ||
branches: | ||
- master | ||
paths: ['.github/workflows/**', '**/CMakeLists.txt', '**/Makefile', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu', '**/*.swift', '**/*.m', '**/*.sh', '**/*.py', '**/*.nix'] | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
paths: ['**/CMakeLists.txt', '**/Makefile', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu', '**/*.swift', '**/*.m', '**/*.sh', '**/*.py', '**/*.nix'] | ||
|
||
jobs: | ||
nix-eval: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ ubuntu-latest, macos-latest ] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Install Nix | ||
uses: DeterminateSystems/nix-installer-action@v9 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
extra-conf: | | ||
extra-substituters = https://${{ vars.CACHIX_NAME }}.cachix.org https://cuda-maintainers.cachix.org | ||
extra-trusted-public-keys = ${{ vars.CACHIX_PUBLIC_KEY }} cuda-maintainers.cachix.org-1:0dq3bujKpuEPMCX6U4WylrUDZ9JyUG0VpVZa7CNfq5E= | ||
- uses: DeterminateSystems/magic-nix-cache-action@v2 | ||
with: | ||
upstream-cache: https://${{ matrix.cachixName }}.cachix.org | ||
- name: List all flake outputs | ||
run: nix flake show --all-systems | ||
- name: Show all output paths | ||
run: > | ||
nix run github:nix-community/nix-eval-jobs | ||
-- --gc-roots-dir gcroot | ||
--flake | ||
".#packages.$(nix eval --raw --impure --expr builtins.currentSystem)" | ||
nix-build: | ||
if: ${{ vars.CACHIX_NAME != '' }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ ubuntu-latest, macos-latest ] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Install Nix | ||
uses: DeterminateSystems/nix-installer-action@v9 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
extra-conf: | | ||
extra-substituters = https://${{ vars.CACHIX_NAME }}.cachix.org https://cuda-maintainers.cachix.org | ||
extra-trusted-public-keys = ${{ vars.CACHIX_PUBLIC_KEY }} cuda-maintainers.cachix.org-1:0dq3bujKpuEPMCX6U4WylrUDZ9JyUG0VpVZa7CNfq5E= | ||
- uses: DeterminateSystems/magic-nix-cache-action@v2 | ||
with: | ||
upstream-cache: https://${{ matrix.cachixName }}.cachix.org | ||
- name: Set-up cachix to push the results to | ||
uses: cachix/cachix-action@v13 | ||
with: | ||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | ||
name: ${{ vars.CACHIX_NAME }} | ||
- name: Build | ||
run: > | ||
nix run github:Mic92/nix-fast-build | ||
-- --skip-cached --no-nom | ||
--flake | ||
".#checks.$(nix eval --raw --impure --expr builtins.currentSystem)" | ||
nix-build-aarch64: | ||
if: ${{ vars.CACHIX_NAME != '' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Install QEMU | ||
# Copy-paste from https://github.com/orgs/community/discussions/8305#discussioncomment-5888654 | ||
run: | | ||
sudo apt-get install -y qemu-user-static qemu-system-aarch64 | ||
sudo usermod -a -G kvm $USER | ||
- name: Install Nix | ||
uses: DeterminateSystems/nix-installer-action@v9 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
extra-conf: | | ||
extra-platforms = aarch64-linux | ||
extra-system-features = nixos-test kvm | ||
extra-substituters = https://${{ vars.CACHIX_NAME }}.cachix.org https://cuda-maintainers.cachix.org | ||
extra-trusted-public-keys = ${{ vars.CACHIX_PUBLIC_KEY }} cuda-maintainers.cachix.org-1:0dq3bujKpuEPMCX6U4WylrUDZ9JyUG0VpVZa7CNfq5E= | ||
- uses: DeterminateSystems/magic-nix-cache-action@v2 | ||
with: | ||
upstream-cache: https://${{ matrix.cachixName }}.cachix.org | ||
- name: Set-up cachix to push the results to | ||
uses: cachix/cachix-action@v13 | ||
with: | ||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | ||
name: ${{ vars.CACHIX_NAME }} | ||
- name: Show all output paths | ||
run: > | ||
nix run github:nix-community/nix-eval-jobs | ||
-- --gc-roots-dir gcroot | ||
--flake | ||
".#packages.aarch64-linux" | ||
- name: Build | ||
run: > | ||
nix run github:Mic92/nix-fast-build | ||
-- --skip-cached --no-nom | ||
--systems aarch64-linux | ||
--flake | ||
".#checks.aarch64-linux" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: update-flake-lock | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00 | ||
|
||
jobs: | ||
lockfile: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Install Nix | ||
uses: DeterminateSystems/nix-installer-action@main | ||
- name: Update flake.lock | ||
uses: DeterminateSystems/update-flake-lock@main | ||
with: | ||
pr-title: "nix: update flake.lock" | ||
pr-labels: | | ||
nix | ||
pr-reviewers: philiptaron,SomeoneSerge | ||
token: ${{ secrets.GITHUB_TOKEN }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Make the flake discoverable on https://flakestry.dev and https://flakehub.com/flakes | ||
name: "Publish a flake to flakestry & flakehub" | ||
on: | ||
push: | ||
tags: | ||
- "*" | ||
workflow_dispatch: | ||
inputs: | ||
tag: | ||
description: "The existing tag to publish" | ||
type: "string" | ||
required: true | ||
jobs: | ||
flakestry-publish: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: "write" | ||
contents: "read" | ||
steps: | ||
- uses: flakestry/flakestry-publish@main | ||
with: | ||
version: "${{ inputs.tag || github.ref_name }}" | ||
flakehub-publish: | ||
runs-on: "ubuntu-latest" | ||
permissions: | ||
id-token: "write" | ||
contents: "read" | ||
steps: | ||
- uses: "actions/checkout@v4" | ||
with: | ||
ref: "${{ (inputs.tag != null) && format('refs/tags/{0}', inputs.tag) || '' }}" | ||
- uses: "DeterminateSystems/nix-installer-action@main" | ||
- uses: "DeterminateSystems/flakehub-push@main" | ||
with: | ||
visibility: "public" | ||
tag: "${{ inputs.tag }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,7 @@ models-mnt | |
/lookup | ||
/main | ||
/metal | ||
/passkey | ||
/perplexity | ||
/q8dot | ||
/quantize | ||
|
Oops, something went wrong.