[Test] Add fastdebug test jobs to GitHub Actions CI workflow - #160
Open
sendaoYan wants to merge 1 commit into
Open
[Test] Add fastdebug test jobs to GitHub Actions CI workflow#160sendaoYan wants to merge 1 commit into
sendaoYan wants to merge 1 commit into
Conversation
Collaborator
Author
|
麻烦maintainer帮我触发下github action测试,看下修改之后CI能否正确触发fastdebug测试 |
Collaborator
Author
|
Collaborator
Author
|
新增的commit修改如下: |
Previously CI test jobs hardcoded debug-level=release, so tests were only run against the release build. The fastdebug build was compiled but never tested. This caused tests like JcmdWithNMTDisabled.java to pass in CI but fail locally when running with a fastdebug build. Add test-linux-x64-fastdebug and test-linux-aarch64-fastdebug jobs that run the same test suites (jdk/tier1, langtools, cvm8, hotspot8) against the fastdebug build. Assisted by DeepSeek V4 Pro Issue: bytedance#159
Collaborator
Author
|
github action报错: build阶段只对release生成jvm_patch,fastdebug需要在 "Get bundles jvm patch" 和 "Run sanity test jvm patch"两个step跳过。 |
Collaborator
Author
|
测试已经通过,麻烦帮忙review下。 |
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.
Previously CI test jobs hardcoded debug-level=release, so tests were only run against the release build. The fastdebug build was compiled but never tested. This caused tests like JcmdWithNMTDisabled.java to pass in CI but fail locally when running with a fastdebug build.
Add test-linux-x64-fastdebug and test-linux-aarch64-fastdebug jobs that run the same test suites (jdk/tier1, langtools, cvm8, hotspot8) against the fastdebug build.
Assisted by DeepSeek V4 Pro
Issue: #159