Skip to content

Commit 4ce19ca

Browse files
committedOct 29, 2024
8343190: GHA: Try building JTReg several times
Reviewed-by: erikj, ihse
1 parent 7c800e6 commit 4ce19ca

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed
 

‎.github/actions/build-jtreg/action.yml

+18-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,24 @@ runs:
5252

5353
- name: 'Build JTReg'
5454
run: |
55-
# Build JTReg and move files to the proper locations
56-
bash make/build.sh --jdk "$JAVA_HOME_17_X64"
55+
# Try building JTReg several times, backing off exponentially on failure.
56+
# ~500 seconds in total should be enough to capture most of the transient
57+
# failures.
58+
for I in `seq 0 8`; do
59+
rm -rf build/images/jtreg
60+
bash make/build.sh --jdk "$JAVA_HOME_17_X64" && break
61+
S=$(( 2 ** $I ))
62+
echo "Failure. Waiting $S seconds before retrying"
63+
sleep $S
64+
done
65+
66+
# Check if build was successful
67+
if [ ! -d build/images/jtreg ]; then
68+
echo "Build failed"
69+
exit 1;
70+
fi
71+
72+
# Move files to the proper locations
5773
mkdir ../installed
5874
mv build/images/jtreg/* ../installed
5975
working-directory: jtreg/src

0 commit comments

Comments
 (0)
Please sign in to comment.