UNCLASSIFIED

Commit ce523258 authored by Michael Uranaka's avatar Michael Uranaka
Browse files

adding in job counter

parent a6b02795
...@@ -3,6 +3,8 @@ ...@@ -3,6 +3,8 @@
# Initial builds. # Initial builds.
gradle --offline test gradle --offline test
loop=1
while true ; do while true ; do
# If it exists, delete the json-object.json file # If it exists, delete the json-object.json file
[ -e json-object.json ] && rm json-object.json [ -e json-object.json ] && rm json-object.json
...@@ -21,6 +23,14 @@ while true ; do ...@@ -21,6 +23,14 @@ while true ; do
[ -s json-object.json ] || continue [ -s json-object.json ] || continue
# Log the current job number.
echo
echo "============================"
echo "Processing job number: $loop"
echo "============================"
echo
let "loop=loop+1"
java -jar process_job/build/libs/process-job.jar java -jar process_job/build/libs/process-job.jar
gradle --offline test \ gradle --offline test \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment