ci: build the desktop template on every cluster (foxtrot, juliett, tango) - #260
Draft
devin-ai-integration[bot] wants to merge 4 commits into
Draft
ci: build the desktop template on every cluster (foxtrot, juliett, tango)#260devin-ai-integration[bot] wants to merge 4 commits into
devin-ai-integration[bot] wants to merge 4 commits into
Conversation
…ngo) Co-Authored-By: mish@e2b.dev <mish@e2b.dev>
Contributor
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
mishushakov
reviewed
Sep 7, 2026
Co-Authored-By: mish@e2b.dev <mish@e2b.dev>
mishushakov
reviewed
Sep 7, 2026
Co-Authored-By: mish@e2b.dev <mish@e2b.dev>
| run: | ||
| working-directory: ./template | ||
| env: | ||
| E2B_API_KEY: ${{ secrets[matrix.api_key_secret] }} |
mishushakov
reviewed
Sep 7, 2026
Co-Authored-By: mish@e2b.dev <mish@e2b.dev>
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.
Summary
The
desktoptemplate is now built on every production cluster — foxtrot, juliett and tango — instead of foxtrot only. Clusters are separate tenancies with separate template registries, so a template built on one does not exist on the others.template.ymlsplits into the DockerHub image job (unchanged, push-only) and abuildTemplatematrix job, one leg per cluster, with the cluster map inmatrix.includeand the key looked up by name:E2B_JULIETT_API_KEYandE2B_TANGO_API_KEYare new repo secrets and must be added before merging (names follow e2b-dev/code-interpreter'sE2B_<CLUSTER>_API_KEYconvention). A missing key fails that leg fast withMissing secret <name> for cluster: <cluster>;fail-fast: falseso the other clusters still build.Also adds a bare
workflow_dispatchso the template can be rebuilt on all clusters without a template change (the Docker image only rebuilds onpush). Legs on the same cluster serialize viaTemplate-${{ github.ref }}-<cluster>; different clusters run in parallel.Merging this PR triggers the workflow (its path filter includes the workflow file), which will do the first juliett/tango builds.
Companion PR for the code-interpreter template: e2b-dev/code-interpreter#338.
Link to Devin session: https://app.devin.ai/sessions/164235e15a6f4e30bbdc3907d388fbc5
Open in Devin Desktop: https://app.devin.ai/desktop/session/164235e15a6f4e30bbdc3907d388fbc5?variant=devin
Requested by: @mishushakov