Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,4 @@ jobs:
# Enable dev-settings feature for test settings (dummy_bool, dummy_int)
# used by e2e tests.
EXTRA_CARGO_FEATURES: openshell-core/dev-settings
run: mise run --no-prepare build:docker:${{ inputs.component }}
run: mise run --no-deps build:docker:${{ inputs.component }}
6 changes: 3 additions & 3 deletions .github/workflows/e2e-gpu-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
run: docker pull ghcr.io/nvidia/openshell/cluster:${{ inputs.image-tag }}

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

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

- name: Run tests
run: mise run --no-prepare --skip-deps e2e:python:gpu
run: mise run --no-deps --skip-deps e2e:python:gpu
8 changes: 4 additions & 4 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
- suite: python
cluster: e2e-python
port: "8080"
cmd: "mise run --no-prepare --skip-deps e2e:python"
cmd: "mise run --no-deps --skip-deps e2e:python"
- suite: rust
cluster: e2e-rust
port: "8081"
cmd: "mise run --no-prepare --skip-deps e2e:rust"
cmd: "mise run --no-deps --skip-deps e2e:rust"
- suite: gateway-resume
cluster: e2e-resume
port: "8082"
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:

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

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

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