You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error occurred after saving blueprint.yaml. See below
Toggling env switch produces same error.
Triggering build through superficial change (whitespace) partially resolved. launch services stalled see below
Launch services eventually fails
Hard reset Workshop and changing the blueprint before restart led to a resolution.
Eventually got it working, but something interesting is going on.
Take this blueprint:
name: Next Sitecomponents:
- name: NextSitetype: serviceimage: node:20-alpineport: 3000build:
# 👇 intentional/selective ordering of 'copy' and 'run' steps# will make it possible to take advantage of cached build# layers in Noop Workshop (TLDR - speedier subsequent builds!)steps:
# first copy over dependency files and install...
- copy: [package.json, yarn.lock]
- run: yarn install --immutable# ...then copy over project files before generating build assets
- copy: [next.config.mjs, tsconfig.json]
- copy: public/
- copy: src/
- run: yarn buildruntime:
command: yarn start# - name: NextStatic# type: static# image: node:20-alpine# build:# steps:# - copy: [package.json, yarn.lock]# - run: yarn install --immutable# - copy: [next.config.mjs, tsconfig.json]# - copy: public/# - copy: src/# - run: yarn build# - directory: build/routes:
- target:
component: NextSite
If I uncomment the static, I get the ambiguous errors. Otherwise it works. Also worth noting that that state appears unrecoverable without a reset + "fixing" of blueprint.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
v0.10.3
Eventually got it working, but something interesting is going on.
Take this blueprint:
If I uncomment the static, I get the ambiguous errors. Otherwise it works. Also worth noting that that state appears unrecoverable without a reset + "fixing" of blueprint.
Beta Was this translation helpful? Give feedback.
All reactions