Skip to content

Commit

Permalink
Ensure we don't pick up static-libs instead of JDK for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
sxa committed Jan 10, 2022
1 parent 8a2584a commit 7f34b50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ansible/pbTestScripts/testJDK.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if [[ $(uname) == "FreeBSD" ]]; then
cp -r $HOME/openjdk-build/workspace/build/src/build/*/jdk* $HOME
export TEST_JDK_HOME=$HOME/jdk
else
export TEST_JDK_HOME=$(find $HOME/openjdk-build/workspace/build/src/build/*/images/ -maxdepth 1 -type d -name "jdk*"|grep -v ".*jre.*"|grep -v ".*-image")
export TEST_JDK_HOME=$(find $HOME/openjdk-build/workspace/build/src/build/*/images/ -maxdepth 1 -type d -name "jdk*"| egrep -v 'jre|-image|static-libs'
fi
mkdir -p $HOME/testLocation
Expand Down

0 comments on commit 7f34b50

Please sign in to comment.