The command "false" failed and exited with 1 during

So here’s my project:
https://travis-ci.org/saasquatch/json-schema-inferrer

Everything works fine locally, and used to work fine in Travis, but I started getting failed builds today, and the erorr is “The command “false” failed and exited with 1 during .”

Does anyone know what it means and how I can fix it?

Thanks!

With the new configuration validator, we are now normalizing user input into forms we know to work. We have found that certain uses (and abuses) are now breaking as a result.

You have two choices:

  1. drop install: false
    This is equivalent to what you had before; this amounts to no-op, as we simply ignored the install value, and proceeded to run the default install commands (e.g., https://travis-ci.org/saasquatch/json-schema-inferrer/builds/635402348#L195)
  2. use install: skip (see https://docs.travis-ci.com/user/job-lifecycle/#skipping-the-installation-phase)
    This explicitly skips the install phase and moves on to the next.