How to use phoneix/installer/mix/tasks with travis

I have a dependency in my package on the phoenix installer archive. I’m using the Mix.Tasks.Phx.New and Mix.Tasks.Phoenix.New new tasks to generate a test projects. This works fine when I run the tests on my dev machine. However these tests fail on travis since the phoenix installer archive is not available.

How can I include the the phoenix installer for my travis build?

Just use mix archive install as you did locally… Also apply --force.

1 Like