Skip to content

Commit f504eca

Browse files
authored
chore: disable automated nix shell activation (#125)
* Disable nix-develop action in workflow Commented out nix-develop action due to hanging issue. * Disable Nix and UV dependencies steps in workflow Comment out Nix installation and dependency caching steps in workflow.
1 parent d1468d8 commit f504eca

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.github/workflows/copilot-setup-steps.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ jobs:
1515
- name: Checkout code
1616
uses: actions/checkout@v4
1717

18-
- name: Install Nix
19-
uses: cachix/install-nix-action@v31
20-
with:
21-
nix_path: nixpkgs=channel:nixos-unstable
18+
# TODO this will cause all of copilot agents Bash tool calls to silently hang (which it won't complain about)
19+
# - name: Install Nix
20+
# uses: cachix/install-nix-action@v31
21+
# with:
22+
# nix_path: nixpkgs=channel:nixos-unstable
23+
# - uses: nicknovitski/nix-develop@v1
2224

23-
- uses: nicknovitski/nix-develop@v1
25+
# - name: Cache UV dependencies
26+
# uses: actions/cache@v4
27+
# with:
28+
# path: |
29+
# ~/.cache/uv
30+
# .venv
31+
# key: ${{ runner.os }}-uv-${{ hashFiles('uv.lock') }}
32+
# restore-keys: |
33+
# ${{ runner.os }}-uv-
2434

25-
- name: Cache UV dependencies
26-
uses: actions/cache@v4
27-
with:
28-
path: |
29-
~/.cache/uv
30-
.venv
31-
key: ${{ runner.os }}-uv-${{ hashFiles('uv.lock') }}
32-
restore-keys: |
33-
${{ runner.os }}-uv-
34-
35-
- name: Install dependencies
36-
run: uv sync --extra dev
35+
# - name: Install dependencies
36+
# run: uv sync --extra dev

0 commit comments

Comments
 (0)