Add workbench-positron-init daily preview stream#126
Draft
bschwedler wants to merge 4 commits into
Draft
Conversation
For dev builds, use the dailies CDN path with the version baked in at render time. For stable builds, keep the releases CDN path with POSITRON_VERSION as a Docker ARG set by bakery at build time. The docs download step is also skipped for dev builds since the dailies CDN does not host docs. The template uses `Image.IsDevelopmentVersion is defined` to guard against the matrix render context where the variable is not available, defaulting to stable behavior.
Wire the Positron product into workbench-positron-init so that --dev-versions only --dev-channel daily builds resolve the latest Positron daily version and push to ghcr.io/posit-dev namespace.
Temporarily points bakery-build-native.yml and the bakery install to the positron-init-preview-stream branch so the dev build can be tested before the images-shared stack merges.
Contributor
|
The session container failures are a build issue on our end. |
ssinnott
approved these changes
Jun 4, 2026
bschwedler
commented
Jun 5, 2026
|
|
||
| RUN echo 'Acquire::Retries "3"; Acquire::http::Timeout "30"; Acquire::https::Timeout "30";' > /etc/apt/apt.conf.d/99-retries && \ | ||
| apt-get update -yqq --fix-missing && \ | ||
| RUN apt-get update -yqq --fix-missing && \ |
Contributor
Author
There was a problem hiding this comment.
This apt configuration should not have been reverted.
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.
Adds a
devVersionsdaily stream toworkbench-positron-initso CI can build preview images from the Positron CDN daily channel and push toghcr.io/posit-dev/workbench-positron-init-preview.The Containerfile template switches between the
dailies/andreleases/CDN paths based onImage.IsDevelopmentVersion. Docs are excluded from daily builds (not published to the dailies CDN);ENV PWB_POSITRON_TARGETis set topositrononly for dev builds.Depends on (must merge first):