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

Show console.log if server fails when building SCC #570

Open
wants to merge 1 commit into
base: vNext
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions releases/24.0.0.6/full/helpers/build/populate_scc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ if [ $TRIM_SCC == yes ]
then
echo "Calculating SCC layer upper bound, starting with initial size $SCC_SIZE."
# Populate the newly created class cache layer.
/opt/ol/wlp/bin/server start
/opt/ol/wlp/bin/server start || { rc=$?; cat /logs/console.log; exit $rc; }

if [ ${WARM_ENDPOINT} == true ]
then
Expand Down Expand Up @@ -145,7 +145,7 @@ fi
# Server start/stop to populate the /output/workarea and make subsequent server starts faster.
for ((i=0; i<$ITERATIONS; i++))
do
/opt/ol/wlp/bin/server start
/opt/ol/wlp/bin/server start || { rc=$?; cat /logs/console.log; exit $rc; }

if [ ${WARM_ENDPOINT} == true ]
then
Expand Down
4 changes: 2 additions & 2 deletions releases/24.0.0.6/kernel-slim/helpers/build/populate_scc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ if [ $TRIM_SCC == yes ]
then
echo "Calculating SCC layer upper bound, starting with initial size $SCC_SIZE."
# Populate the newly created class cache layer.
/opt/ol/wlp/bin/server start
/opt/ol/wlp/bin/server start || { rc=$?; cat /logs/console.log; exit $rc; }

if [ ${WARM_ENDPOINT} == true ]
then
Expand Down Expand Up @@ -145,7 +145,7 @@ fi
# Server start/stop to populate the /output/workarea and make subsequent server starts faster.
for ((i=0; i<$ITERATIONS; i++))
do
/opt/ol/wlp/bin/server start
/opt/ol/wlp/bin/server start || { rc=$?; cat /logs/console.log; exit $rc; }

if [ ${WARM_ENDPOINT} == true ]
then
Expand Down
4 changes: 2 additions & 2 deletions releases/24.0.0.9/full/helpers/build/populate_scc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ if [ $TRIM_SCC == yes ]
then
echo "Calculating SCC layer upper bound, starting with initial size $SCC_SIZE."
# Populate the newly created class cache layer.
/opt/ol/wlp/bin/server start
/opt/ol/wlp/bin/server start || { rc=$?; cat /logs/console.log; exit $rc; }

if [ ${WARM_ENDPOINT} == true ]
then
Expand Down Expand Up @@ -145,7 +145,7 @@ fi
# Server start/stop to populate the /output/workarea and make subsequent server starts faster.
for ((i=0; i<$ITERATIONS; i++))
do
/opt/ol/wlp/bin/server start
/opt/ol/wlp/bin/server start || { rc=$?; cat /logs/console.log; exit $rc; }

if [ ${WARM_ENDPOINT} == true ]
then
Expand Down
4 changes: 2 additions & 2 deletions releases/24.0.0.9/kernel-slim/helpers/build/populate_scc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ if [ $TRIM_SCC == yes ]
then
echo "Calculating SCC layer upper bound, starting with initial size $SCC_SIZE."
# Populate the newly created class cache layer.
/opt/ol/wlp/bin/server start
/opt/ol/wlp/bin/server start || { rc=$?; cat /logs/console.log; exit $rc; }

if [ ${WARM_ENDPOINT} == true ]
then
Expand Down Expand Up @@ -145,7 +145,7 @@ fi
# Server start/stop to populate the /output/workarea and make subsequent server starts faster.
for ((i=0; i<$ITERATIONS; i++))
do
/opt/ol/wlp/bin/server start
/opt/ol/wlp/bin/server start || { rc=$?; cat /logs/console.log; exit $rc; }

if [ ${WARM_ENDPOINT} == true ]
then
Expand Down
4 changes: 2 additions & 2 deletions releases/latest/beta/helpers/build/populate_scc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ if [ $TRIM_SCC == yes ]
then
echo "Calculating SCC layer upper bound, starting with initial size $SCC_SIZE."
# Populate the newly created class cache layer.
/opt/ol/wlp/bin/server start
/opt/ol/wlp/bin/server start || { rc=$?; cat /logs/console.log; exit $rc; }

if [ ${WARM_ENDPOINT} == true ]
then
Expand Down Expand Up @@ -145,7 +145,7 @@ fi
# Server start/stop to populate the /output/workarea and make subsequent server starts faster.
for ((i=0; i<$ITERATIONS; i++))
do
/opt/ol/wlp/bin/server start
/opt/ol/wlp/bin/server start || { rc=$?; cat /logs/console.log; exit $rc; }

if [ ${WARM_ENDPOINT} == true ]
then
Expand Down
4 changes: 2 additions & 2 deletions releases/latest/full/helpers/build/populate_scc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ if [ $TRIM_SCC == yes ]
then
echo "Calculating SCC layer upper bound, starting with initial size $SCC_SIZE."
# Populate the newly created class cache layer.
/opt/ol/wlp/bin/server start
/opt/ol/wlp/bin/server start || { rc=$?; cat /logs/console.log; exit $rc; }

if [ ${WARM_ENDPOINT} == true ]
then
Expand Down Expand Up @@ -145,7 +145,7 @@ fi
# Server start/stop to populate the /output/workarea and make subsequent server starts faster.
for ((i=0; i<$ITERATIONS; i++))
do
/opt/ol/wlp/bin/server start
/opt/ol/wlp/bin/server start || { rc=$?; cat /logs/console.log; exit $rc; }

if [ ${WARM_ENDPOINT} == true ]
then
Expand Down
4 changes: 2 additions & 2 deletions releases/latest/kernel-slim/helpers/build/populate_scc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ if [ $TRIM_SCC == yes ]
then
echo "Calculating SCC layer upper bound, starting with initial size $SCC_SIZE."
# Populate the newly created class cache layer.
/opt/ol/wlp/bin/server start
/opt/ol/wlp/bin/server start || { rc=$?; cat /logs/console.log; exit $rc; }

if [ ${WARM_ENDPOINT} == true ]
then
Expand Down Expand Up @@ -145,7 +145,7 @@ fi
# Server start/stop to populate the /output/workarea and make subsequent server starts faster.
for ((i=0; i<$ITERATIONS; i++))
do
/opt/ol/wlp/bin/server start
/opt/ol/wlp/bin/server start || { rc=$?; cat /logs/console.log; exit $rc; }

if [ ${WARM_ENDPOINT} == true ]
then
Expand Down