-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/get-trace-id-from-req-headers
- Loading branch information
Showing
139 changed files
with
9,066 additions
and
1,985 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
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
Oops, something went wrong.