-
-
Notifications
You must be signed in to change notification settings - Fork 6
feat: init versioning and testing #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
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
|
experimental Dockerfile and tests
remix tests.
latest Bun and Node.js versions, and remove unnecessary Docker files and TODOs
latest versions of Bun and Node.js
maintainable format, and plan routine checks for new versions and workflow to build only new versions
in build plan
lab-build-updated.sh
push Docker tags
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.
Close #1
Close #3
Close #4
Close #5
📦 Changes
versions.jsoninstead of a different file.imbios/bun-node:BUN_VERSION-NODE_VERSION-LINUX_DISTRO, and support semver latest tagging as example below:imbios/bun-node:1.0.11-21.7.0-alpine; tags:1.0-21.7.0-alpine,1-21.7.0-alpine,latest-21.7.0-alpine,1.0.11-21.7-alpine,1.0.11-21-alpine,1.0.11-latest-alpine,latest-alpineGiven the examples:
1.0.11,1.0.11-canary21.7.0(current),20.9.0(latest LTS),18.2.0(second latest LTS)alpine,debian-slim,debianBun version 1.0.11 with Node.js version 21.7.0 (Current)
alpine,debian-slim, anddebian:imbios/bun-node:1.0.11-21.7.0-DISTROimbios/bun-node:1.0-21.7.0-DISTROimbios/bun-node:1-21.7.0-DISTROimbios/bun-node:latest-21.7.0-DISTROimbios/bun-node:1.0.11-21.7-DISTROimbios/bun-node:1.0.11-21-DISTROimbios/bun-node:1.0.11-latest-DISTROimbios/bun-node:latest-DISTROBun version 1.0.11-canary with Node.js version 21.7.0 (Current)
1.0.11withcanaryin each tag from above.Bun version 1.0.11 with Node.js version 20.9.0 (Latest LTS, Iron)
21.7.0with20.9.0and addltsandironin each tag from 1.imbios/bun-node:1.0.11-20.9.0-lts-DISTRO,imbios/bun-node:1.0.11-20.9.0-iron-DISTROBun version 1.0.11-canary with Node.js version 20.9.0 (Latest LTS, Iron)
1.0.11withcanaryand follow the pattern from 3.Bun version 1.0.11 with Node.js version 18.2.0 (Second Latest LTS, Hydrogen)
21.7.0with18.2.0and addhydrogenin each tag from 1.imbios/bun-node:1.0.11-18.2.0-hydrogen-DISTROBun version 1.0.11-canary with Node.js version 18.2.0 (Second Latest LTS, Hydrogen)
1.0.11withcanaryand follow the pattern from 5.Canary tag
imbios/bun-node:canary-latest-debianLatest LTS tag
imbios/bun-node:latest-lts-debianThis approach provides a comprehensive tagging system that includes various versions and distros, accommodating version rollbacks and specific version needs.