Reports on executed jobs

Replace this template with your information

Describe your question in as much detail as possible:
let say I have 3 jobs

job1:
script:

  • echo “hello job 1”
  • echo “success”

job2:
script:

  • echo “hello job 2”
  • echo “success”

job3:
script:

  • echo “hello job 3”
  • echo “failure”

how can I generate a visual report, say a line graph, of:

  1. howmany times the job ran
  2. howmany times each job echoed “success”

What I’m trying to achieve is this, I have a code quality job, I want to be able to see howmany time the code quality job ran, and for each run I want to be able to visualize if the code quality became better (went up in points) or worse (went down in points) over time.