We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f084780 commit 5d417a7Copy full SHA for 5d417a7
1 file changed
melting-pot.sh
@@ -613,6 +613,11 @@ generateScript() {
613
done
614
echo >> melt.sh
615
echo 'do' >> melt.sh
616
+ echo ' # If the build passed previously, don'\''t repeat it.' >> melt.sh
617
+ echo ' test -f "$f/build.log" &&' >> melt.sh
618
+ echo ' tail -n6 "$f/build.log" | grep -qF '\''[INFO] BUILD SUCCESS'\'' &&' >> melt.sh
619
+ echo ' echo "[SUCCESS] $f (prior)" && continue' >> melt.sh
620
+ echo >> melt.sh
621
echo ' cd "$f"' >> melt.sh
622
echo ' sh "$dir/build.sh" >build.log 2>&1 &&' >> melt.sh
623
echo ' echo "[SUCCESS] $f" || {' >> melt.sh
0 commit comments