Skip to content

Commit 9bc2e2c

Browse files
authored
fix(ci): rename mise --no-prepare to --no-deps (#942)
mise 2026.4.18 (bumped in #929) renamed the `--no-prepare` flag to `--no-deps`. Update workflow invocations to match.
1 parent b19a3dc commit 9bc2e2c

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,4 @@ jobs:
9393
# Enable dev-settings feature for test settings (dummy_bool, dummy_int)
9494
# used by e2e tests.
9595
EXTRA_CARGO_FEATURES: openshell-core/dev-settings
96-
run: mise run --no-prepare build:docker:${{ inputs.component }}
96+
run: mise run --no-deps build:docker:${{ inputs.component }}

.github/workflows/e2e-gpu-test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
run: docker pull ghcr.io/nvidia/openshell/cluster:${{ inputs.image-tag }}
6565

6666
- name: Install Python dependencies and generate protobuf stubs
67-
run: uv sync --frozen && mise run --no-prepare python:proto
67+
run: uv sync --frozen && mise run --no-deps python:proto
6868

6969
- name: Bootstrap GPU cluster
7070
env:
@@ -76,7 +76,7 @@ jobs:
7676
SKIP_IMAGE_PUSH: "1"
7777
SKIP_CLUSTER_IMAGE_BUILD: "1"
7878
OPENSHELL_CLUSTER_IMAGE: ghcr.io/nvidia/openshell/cluster:${{ inputs.image-tag }}
79-
run: mise run --no-prepare --skip-deps cluster
79+
run: mise run --no-deps --skip-deps cluster
8080

8181
- name: Run tests
82-
run: mise run --no-prepare --skip-deps e2e:python:gpu
82+
run: mise run --no-deps --skip-deps e2e:python:gpu

.github/workflows/e2e-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ jobs:
2929
- suite: python
3030
cluster: e2e-python
3131
port: "8080"
32-
cmd: "mise run --no-prepare --skip-deps e2e:python"
32+
cmd: "mise run --no-deps --skip-deps e2e:python"
3333
- suite: rust
3434
cluster: e2e-rust
3535
port: "8081"
36-
cmd: "mise run --no-prepare --skip-deps e2e:rust"
36+
cmd: "mise run --no-deps --skip-deps e2e:rust"
3737
- suite: gateway-resume
3838
cluster: e2e-resume
3939
port: "8082"
@@ -66,7 +66,7 @@ jobs:
6666

6767
- name: Install Python dependencies and generate protobuf stubs
6868
if: matrix.suite == 'python'
69-
run: uv sync --frozen && mise run --no-prepare python:proto
69+
run: uv sync --frozen && mise run --no-deps python:proto
7070

7171
- name: Build Rust CLI
7272
if: matrix.suite != 'python'
@@ -84,7 +84,7 @@ jobs:
8484
SKIP_IMAGE_PUSH: "1"
8585
SKIP_CLUSTER_IMAGE_BUILD: "1"
8686
OPENSHELL_CLUSTER_IMAGE: ghcr.io/nvidia/openshell/cluster:${{ inputs.image-tag }}
87-
run: mise run --no-prepare --skip-deps cluster
87+
run: mise run --no-deps --skip-deps cluster
8888

8989
- name: Run tests
9090
run: ${{ matrix.cmd }}

0 commit comments

Comments
 (0)