-
Notifications
You must be signed in to change notification settings - Fork 732
Add CIs to release new version and publish binary files #1648
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
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
Merge main into dev/binary_release
- run CI when a PR is opened and updated - run CI when a PR is merged into *main* and *dev* branches. It is based on https://github.com/bytecodealliance/wasm-micro-runtime branch rules - `cancel_previous` is duplicated with `concurrency`
`release_process` is only triggered manually. It will create a git tag with the semantic versioning definition in *config_common.cmake*. And generate binaries for *iwasm* and *wamrc* on Ubuntu and MacOS.
combine three spec-test jobs into one, so as to speed up workflow compilation_on_android_ubuntu.yml
- build_wamr_sdk is a reusable workflow to release wamr-sdk on variant OSes - add samples/simple into routine CIs triggered by PR events
Merge main into dev/binary_release
Github Actions will extract the content from RELEASE_NOTES.md and use it to create the Github Release.
…ersion (#1604) Fix a bug that not create a pre-release when increasing the minor version or the major version
Also fix an issue when zipping a directory
create_tag workflow reads version info from core/version.h, ref to #1617
### Summary * Added a release stage that builds LLDB for macOS. * Init the copied LLVM source as a git repo, as found an issue where the patch wasn't being applied * Made small changes to LLDB patch that fixed compatibility with latest xcode clang Tested on x86_64 & ARM macbook pros
- Add Fast JIT to spec case test - Remove unnecessary spec test combinations - Remove unnecessary download llvm cache for classic/fast interpreter spec test
Collaborator
|
LGTM |
Current output syntax used in github actions is deprecated: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/. This PR addresses issue #1639. Signed-off-by: Andrés Felipe Barco Santa <[email protected]>
wenyongh
added a commit
that referenced
this pull request
Dec 6, 2022
Add CIs to enable the release process of a new version of WAMR, and build and publish the binary files when a version is released, including iwasm, wamrc, lldb, vscode-extension and wamr-ide for Ubuntu-20.04, Ubuntu-22.04 and MacOS. And refine the CIs to test spec cases.
vickiegpt
pushed a commit
to vickiegpt/wamr-aot-gc-checkpoint-restore
that referenced
this pull request
May 27, 2024
…ance#1648) Add CIs to enable the release process of a new version of WAMR, and build and publish the binary files when a version is released, including iwasm, wamrc, lldb, vscode-extension and wamr-ide for Ubuntu-20.04, Ubuntu-22.04 and MacOS. And refine the CIs to test spec cases.
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.
Add CIs to enable the release process of a new version of WAMR,
and build and publish the binary files when a version is released,
including iwasm, wamrc, lldb, vscode-extension and wamr-ide for
Ubuntu-20.04, Ubuntu-22.04 and MacOS.
And refine the CIs to test spec cases.