nix: build and cache impure devshells (#2765)

* nix: build and cache all devshells

* nix: add poetry to the impure shell

This shouldn't be used to manage dependencies in a Nix devshell, but can
be handy to update `poetry.lock`.

* Fix Nix build, disable pure shell (covered by Nix tests)
This commit is contained in:
Daniël de Kok 2024-11-20 20:56:11 +01:00 committed by GitHub
parent 46a5a7e73e
commit 07bed530f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 39 additions and 0 deletions

34
.github/workflows/nix_cache.yaml vendored Normal file
View File

@ -0,0 +1,34 @@
name: "Cache devshells"
on:
pull_request:
paths:
- "flake.nix"
- "flake.lock"
- "nix/**"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
tests:
runs-on:
group: aws-highmemory-32-plus-priv
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
with:
nix_path: nixpkgs=channel:nixos-unstable
- uses: cachix/cachix-action@v14
with:
name: text-generation-inference
# If you chose signing key for write access
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
env:
USER: github_runner
- name: Build impure devshell
run: nix build .\#devShells.x86_64-linux.impure
- name: Build impure devshell (CUDA dev)
run: nix build .\#devShells.x86_64-linux.impureWithCuda
# Pure shell dependencies are covered by Nix tests.
# - name: Build pure devshell
# run: nix build .\#devShells.x86_64-linux.pure

View File

@ -9,6 +9,7 @@
cudaPackages, cudaPackages,
openssl, openssl,
pkg-config, pkg-config,
poetry,
protobuf, protobuf,
python3, python3,
pyright, pyright,
@ -28,6 +29,7 @@ mkShell {
black black
isort isort
pkg-config pkg-config
poetry
(rust-bin.stable.latest.default.override { (rust-bin.stable.latest.default.override {
extensions = [ extensions = [
"rust-analyzer" "rust-analyzer"

View File

@ -30,6 +30,7 @@
opentelemetry-semantic-conventions, opentelemetry-semantic-conventions,
outlines, outlines,
peft, peft,
pillow,
prometheus-client, prometheus-client,
punica-kernels, punica-kernels,
py-cpuinfo, py-cpuinfo,
@ -69,6 +70,7 @@ buildPythonPackage {
"huggingface-hub" "huggingface-hub"
"loguru" "loguru"
"opentelemetry-instrumentation-grpc" "opentelemetry-instrumentation-grpc"
"pillow"
"sentencepiece" "sentencepiece"
"typer" "typer"
]; ];
@ -102,6 +104,7 @@ buildPythonPackage {
opentelemetry-semantic-conventions opentelemetry-semantic-conventions
outlines outlines
peft peft
pillow
prometheus-client prometheus-client
punica-kernels punica-kernels
py-cpuinfo py-cpuinfo