Reputation: 3135
I have a travis build job configured at: https://travis-ci.org/caffeinated-expert/frisbee
I have been pushing commits but travis does not pick them up.
Upvotes: 4
Views: 1650
Reputation: 39005
I just had this issue, receiving the following error after not making a build for the first time in 2 months.
"Oh no! An error occurred. The job could not be restarted"
and opening up the console, a 403 was reported.
According to this thread it was necessary for me to select a payment plan (which in my case, was the 'free' plan)
To select your plan:
Upvotes: 0
Reputation: 493
That usually happens when you have syntax errors in your .travis.yml
. You can check your travis config using the web app at http://lint.travis-ci.org/. (There's more information here)
When I run the .travis.yml
from your development branch, I get
syntax error: (<unknown>): did not find expected '-' indicator while parsing a block collection at line 5 column 3
Upvotes: 14