File tree 1 file changed +18
-2
lines changed
.github/actions/build-jtreg
1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change 52
52
53
53
- name : ' Build JTReg'
54
54
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
57
73
mkdir ../installed
58
74
mv build/images/jtreg/* ../installed
59
75
working-directory : jtreg/src
You can’t perform that action at this time.
0 commit comments