fix(ci): skip web build when owletto-web is stubbed#222
Merged
Conversation
bunx vite was downloading vite@latest because the bin wasn't on PATH; bun run build invokes the package script which resolves vite from local node_modules. Verified entry-resolution failure was due to vite version mismatch (latest is rolldown-based).
OWLETTO_WEB_DEPLOY_KEY secret isn't set on lobu-ai/lobu, so the submodule action writes a stub package.json with no scripts. Pass SKIP_WEB_BUILD=true to the docker build in that case so it short-circuits to creating an empty dist/ instead of failing on 'Script not found build'.
buremba
added a commit
that referenced
this pull request
May 26, 2026
buremba
added a commit
that referenced
this pull request
May 26, 2026
…runs (#1058) Per-watcher execution_config (timeout_seconds/max_budget_usd/model/permission_mode/effort) so device-worker watcher runs are no longer capped at a hardcoded 60s (default 600s). Server column + CRUD + runtime validation + owner-gated elevated permission modes + worker-api poll payload; paired owletto dispatcher + UI in #222.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
OWLETTO_WEB_DEPLOY_KEY isn't set on this repo, so setup-submodule writes a stub package.json without scripts. Wire its 'stubbed' output into the docker build-args as SKIP_WEB_BUILD=true so the build short-circuits to creating an empty dist/ instead of failing on 'Script not found build'.