Fast_finish option to finish execution of scripts in Travis

I might not be using this properly.

Config:

- stage: test
      script:
         - ./first_script
         - ./second_script
         - ./third_script

To test if that’s working I simulated an error with travis_terminate 1 in the middle of the scripts above.

Hi @Northskool,

My rule of thumb is to use the fast_finish: true option under jobs, so here’s an example:

jobs:
  include:
    - fast_finish: true
1 Like

This worked perfectly, thanks @Montana.

Thanks. Glad it worked.