Rob Adams

Results 20 comments of Rob Adams

I've been able to get the tests running locally, and the four failures reported by AppVeyor are passing for me. Not sure about those other skipped tests ("cannot run clustered...

The distinction makes a little more sense now that I understand the reasoning behind it. I think I'd still favor consistent I/O handling, or a command line flag to enable...

We achieved similar [parallel-run output w/ host names](https://github.com/labzero/bootleg/blob/master/lib/bootleg/ssh.ex#L78) by passing a channel function to [`SSH.run/3`](https://hexdocs.pm/sshkit/SSHKit.SSH.html#run/3). This could certainly be made simpler by returning a host struct, alias or index with...

Exciting! Thanks for all your hard work on this, @pmeinhardt! Love these goals! 💯

While this is not a use-case that Bootleg directly supports, you may be able to use a combination of the some of the lesser-used [configuration options](https://hexdocs.pm/bootleg/reference/options.html) and either: - custom...

The functionality shown in the snippet above can be reproduced in Bootleg using its `remote` macro: ```elixir use Bootleg.DSL role :app, "example.com", workspace: "/opt/app" task :hot_upgrade do vsn = config(:version)...

Hi @guidotripaldi ! Yes, that sounds very useful! I'm happy to help with the functional tests if you'd like to open a PR. Thanks!

That looks great @guidotripaldi. The distillery 2.1.0 changes have now been merged into master. Thanks!

`bootleg_phoenix` only supports remote build types at the moment, suggest we move this milestone to get a 0.11.0 out asap

It sounds like it may be simpler to avoid walking the AST (or doing so in a later task) and initially just going through the list of tasks registered to...