Fix: Moving variable to outside the loop
The variable was being reset to false instead of toggling. Change-Id: Id8ff808e3285af02e5eaa1a09827d3352eb972f8
This commit is contained in:
parent
26212571ea
commit
74abfda084
@ -82,6 +82,7 @@ EOF
|
|||||||
|
|
||||||
done
|
done
|
||||||
|
|
||||||
|
voting_ci="false"
|
||||||
for jarvis_project in `find ./tools/gate/jarvis/5G-SA-core -maxdepth 1 -mindepth 1 -type d -printf '%f\n'`; do
|
for jarvis_project in `find ./tools/gate/jarvis/5G-SA-core -maxdepth 1 -mindepth 1 -type d -printf '%f\n'`; do
|
||||||
# Check jarvis pipeline run
|
# Check jarvis pipeline run
|
||||||
end=$(date +%s)
|
end=$(date +%s)
|
||||||
@ -103,7 +104,6 @@ for jarvis_project in `find ./tools/gate/jarvis/5G-SA-core -maxdepth 1 -mindepth
|
|||||||
end=$(date +%s)
|
end=$(date +%s)
|
||||||
timeout="120"
|
timeout="120"
|
||||||
end=$((end + timeout))
|
end=$((end + timeout))
|
||||||
voting_ci="false"
|
|
||||||
while true; do
|
while true; do
|
||||||
if [ $voting_ci = "true" ];
|
if [ $voting_ci = "true" ];
|
||||||
then
|
then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user