Skip to content
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

Use adoptium/ubuntu2004_build_image:linux-riscv64 image for testing on RISC-V #4929

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions buildenv/jenkins/openjdk_tests
Original file line number Diff line number Diff line change
Expand Up @@ -464,9 +464,9 @@ def runTest() {
// Automatically registers foreign file formats with the kernel using binfmt_static to simplify execution of multi-architecture binaries and Docker containers
// In fact, this command only needs to be executed once
sh "docker run --rm --privileged multiarch/qemu-user-static --reset -p yes"
docker.image('alibabadragonwell/riscv-normal-qemu_6.0.0-rvv-1.0:latest').pull()
docker.image('adoptium/ubuntu2004_build_image:linux-riscv64').pull()
// The ${HOME} directory must be mounted, otherwise xvfb will fail to startup
docker.image('alibabadragonwell/riscv-normal-qemu_6.0.0-rvv-1.0:latest').inside("-v ${env.HOME}:${env.HOME}") {
docker.image('adoptium/ubuntu2004_build_image:linux-riscv64').inside("-v ${env.HOME}:${env.HOME}") {
jenkinsfile.testBuild()
}
} else {
Expand Down