Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add alias for Hatchet::App.default_buildpack #73

Merged
merged 1 commit into from
Apr 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## HEAD

- Hatchet::App.default_buildpack is aliased to `:default` symbol while passing in buildpacks as an array to Hatchet::App (https://github.com/heroku/hatchet/pull/73)

## 4.1.1

- Fix branch resolution on Travis when a pull-request is tested (https://github.com/heroku/hatchet/pull/70)
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,12 +187,16 @@ def test_deploy
# ...
```

You can specify multiple buildpacks by passing in an array.
You can specify multiple buildpacks by passing in an array. When you do that you also need to tell hatchet where to place your buildpack. Since hatchet needs to build your buildpack from a branch you should not hardcode a path like `heroku/ruby` instead Hatchet has a replacement mechanism. Use the `:default` symbol where you want your buildpack to execute. For example:

You can use `Hatchet::App.default_buildpack` to get the buildpack URL and branch specified by environment variables:
```
Hatchet::Runner.new("default_ruby", buildpacks: [:default, "https://github.com/pgbouncer/pgbouncer"])
```

That will expand your buildpack and branch. For example if you're on the `update_readme` branch of the `heroku-buildpack-ruby` buildpack it would expand to:

```
Hatchet::Runner.new("default_ruby", buildpacks: [Hatchet::App.default_buildpack, "https://github.com/pgbouncer/pgbouncer"])
Hatchet::Runner.new("default_ruby", buildpacks: ["https://github.com/heroku/heroku-buildpack-ruby#update_readme", "https://github.com/pgbouncer/pgbouncer"])
```

You can also specify a stack:
Expand Down
4 changes: 3 additions & 1 deletion lib/hatchet/app.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class App
HATCHET_BUILDPACK_BRANCH = -> { ENV['HATCHET_BUILDPACK_BRANCH'] || ENV['HEROKU_TEST_RUN_BRANCH'] || Hatchet.git_branch }
BUILDPACK_URL = "https://github.com/heroku/heroku-buildpack-ruby.git"

attr_reader :name, :stack, :directory, :repo_name, :app_config
attr_reader :name, :stack, :directory, :repo_name, :app_config, :buildpacks

class FailedDeploy < StandardError
def initialize(app, output)
Expand Down Expand Up @@ -45,6 +45,8 @@ def initialize(repo_name,
@labs = ([] << labs).flatten.compact
@buildpacks = buildpack || buildpacks || buildpack_url || self.class.default_buildpack
@buildpacks = Array(@buildpacks)
@buildpacks.map! {|b| b == :default ? self.class.default_buildpack : b}

@before_deploy = before_deploy
@app_config = config
@reaper = Reaper.new(api_rate_limit: api_rate_limit)
Expand Down
7 changes: 6 additions & 1 deletion test/hatchet/app_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
require 'test_helper'

class AppTest < Minitest::Test
def test_app_with_default
app = Hatchet::App.new("default_ruby", buildpacks: [:default])
assert_match "https://github.com/heroku/heroku-buildpack-ruby", app.buildpacks.first
end

def test_create_app_with_stack
stack = "heroku-16"
app = Hatchet::App.new("default_ruby", stack: stack)
Expand Down Expand Up @@ -62,7 +67,7 @@ def app.push_with_retry!; end # Don't actually deploy
end
end
end

def test_run
app = Hatchet::GitApp.new("default_ruby")
app.deploy do
Expand Down