Hello Team,

Good Day to you!

I'm new to the Lava Environment and need advice on writing a job definition to run a script which can perform booting, run the tests and report results. I don't need to deploy and boot.

Below is the job def. I'm trying to work. Please suggest any changes I should make.

device_type: x86
job_name: Execute the script
timeouts:
  job:
    minutes: 20
  action:
    minutes: 20
  connection:
    minutes: 5
visibility: public
actions:
-  test:
    timeout:
      minutes: 10
    definitions:
    - repository:
        metadata:
          format: Lava-Test Test Definition
          name: testing
          description: "Sanity Test on Beaglebone"
          os:
          - Linux
          scope:
          - functional
        run:
          steps:
          - "cd  Folder_name/"
          - "./test_script.sh"
   


Thanks.