Out of nowhere our deployment started failing in out build:
https://app.travis-ci.com/github/Ficonic/routaapp/builds/268813051
Log says:
Is there something I can do to fix this?
Out of nowhere our deployment started failing in out build:
https://app.travis-ci.com/github/Ficonic/routaapp/builds/268813051
Log says:
Is there something I can do to fix this?
I tried to specify the ruby version before deploy, but it did not have any impact. I still get the exact log as you.
before_deploy:
- rvm install 2.5.0 --default
- rvm use 2.5.0
Adding this under deply solved my issue:
deploy:
...
edge: true
This worked for me as well. Hopefully DPL 2 becomes a stable release soon.