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/pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ jobs:
bash examples/models/moshi/mimi/install_requirements.sh

# reinstall executorch
bash ./install_executorch.sh
bash ./install_executorch.sh --minimal

# run python unittest
python -m unittest examples.models.moshi.mimi.test_mimi
Expand Down
2 changes: 1 addition & 1 deletion backends/openvino/scripts/openvino_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ main() {
export CMAKE_BUILD_ARGS="--target openvino_backend"

# Build the package
./install_executorch.sh
./install_executorch.sh --minimal

# Install torchao
pip install third-party/ao
Expand Down
4 changes: 4 additions & 0 deletions install_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,10 @@ def install_optional_example_requirements(use_pytorch_nightly):
"install",
"-r",
"requirements-examples.txt",
"--extra-index-url",
TORCH_NIGHTLY_URL,
"--upgrade-strategy",
"only-if-needed",
],
check=True,
)
Expand Down
Loading