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

pbTests: Build bisheng as a test for RISC-V #2090

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
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
13 changes: 9 additions & 4 deletions ansible/pbTestScripts/qemuPlaybookCheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,15 @@ defaultVars() {
exit 1;
fi
if [[ "$buildJDK" == true && "$ARCHITECTURE" == "RISCV" ]]; then
echo "Currently unable to build a JDK on RISC-V natively"
echo "Skipping build/test"
buildJDK=false
testJDK=false
if [ "$buildVariant" = "hotspot" ]; then
echo "Cannot build the main hotspot directly on RISC-V so selecting Bisheng variant"
buildVariant=bisheng
else
echo "Currently unable to build a JDK on RISC-V natively"
echo "Skipping build/test"
buildJDK=false
testJDK=false
fi
fi

}
Expand Down