Skip to content

Commit 76d6e06

Browse files
fixup! feat: simplify nix flake
1 parent a707e3a commit 76d6e06

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/formal.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ jobs:
2626
cache-bin: "false"
2727
cache-workspace-crates: "true"
2828
cache-on-failure: "true"
29-
cmd-format: nix develop .#ci --quiet -c {0}
29+
cmd-format: nix develop .#default --quiet -c {0}
3030
- name: Explore lifecycle interleavings with Shuttle
31-
run: nix develop .#ci --quiet --command cargo test -p wisp-lifecycle --test shuttle_lifecycle
31+
run: nix develop .#default --quiet --command cargo test -p wisp-lifecycle --test shuttle_lifecycle

.github/workflows/nix.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ jobs:
1818
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
1919
- uses: ./.github/actions/setup-nix
2020
- uses: DeterminateSystems/flake-checker-action@de924abd783455e8429c858962b9e43062d19da1 # v13
21-
- run: nix develop .#ci --quiet --command nixfmt --check flake.nix nix
21+
- run: nix develop .#default --quiet --command nixfmt --check flake.nix nix
2222
- run: nix flake check --print-build-logs

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ jobs:
6262
cache-bin: "false"
6363
cache-workspace-crates: "true"
6464
cache-on-failure: "true"
65-
cmd-format: nix develop .#ci --quiet -c {0}
65+
cmd-format: nix develop .#default --quiet -c {0}
6666

6767
- name: Build Wisp binaries (release)
68-
run: nix develop .#ci --quiet --command cargo build -p wisp-desktop -p wisp-mcp --release --locked
68+
run: nix develop .#default --quiet --command cargo build -p wisp-desktop -p wisp-mcp --release --locked
6969

7070
- name: Assemble Wisp.app bundle
7171
run: |

.github/workflows/rust-macos.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ jobs:
3737
cache-bin: "false"
3838
cache-workspace-crates: "true"
3939
cache-on-failure: "true"
40-
cmd-format: nix develop .#ci --quiet -c {0}
40+
cmd-format: nix develop .#default --quiet -c {0}
4141
- run: swift test --package-path native/WispAudioKit
4242
# Builds the WispAudioKit Swift static library through build.rs and
4343
# exercises the FFI round-trip via the smoke test in wisp-audiokit.
44-
- run: nix develop .#ci --quiet --command cargo test -p wisp-audiokit
44+
- run: nix develop .#default --quiet --command cargo test -p wisp-audiokit
4545
# Exercises AppModel/session reducer regressions where GPUI and the
4646
# WispAudioKit bridge can link against the Metal toolchain.
47-
- run: nix develop .#ci --quiet --command cargo test -p wisp-desktop --all-targets
47+
- run: nix develop .#default --quiet --command cargo test -p wisp-desktop --all-targets

.github/workflows/swift.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2222
- uses: ./.github/actions/setup-nix
23-
- run: nix develop .#ci --quiet --command swiftformat --lint native/WispAudioKit/Sources native/WispAudioKit/Tests
23+
- run: nix develop .#default --quiet --command swiftformat --lint native/WispAudioKit/Sources native/WispAudioKit/Tests

.github/workflows/version-bump.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
# Sync the local crate versions in Cargo.lock without touching any
124124
# third-party pins. `--workspace` limits the update to the workspace
125125
# members, whose versions are inherited from the value we just set.
126-
nix develop .#ci --quiet --command cargo update --workspace
126+
nix develop .#default --quiet --command cargo update --workspace
127127
128128
echo "--- Cargo.toml [workspace.package] ---"
129129
grep -n 'version' Cargo.toml | tail -1

0 commit comments

Comments
 (0)