Skip to content

Commit

Permalink
Switch to heroku/builder:22 for integration tests (#72)
Browse files Browse the repository at this point in the history
Since it supersedes `heroku/buildpacks:20`:
https://github.com/heroku/builder#heroku-builder-images
  • Loading branch information
edmorley authored Jun 13, 2022
1 parent d397454 commit 683de9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ $ cargo test -- --include-ignored

```
$ cargo libcnb package \
&& pack build procfile_example_app --builder heroku/buildpacks:20 --buildpack target/buildpack/debug/heroku_procfile --path tests/fixtures/app_with_procfile --verbose \
&& pack build procfile_example_app --builder heroku/builder:22 --buildpack target/buildpack/debug/heroku_procfile --path tests/fixtures/app_with_procfile --verbose \
&& docker run -it --rm --entrypoint worker procfile_example_app
```

Expand Down
2 changes: 1 addition & 1 deletion tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use std::time::Duration;
#[test]
#[ignore]
fn test() {
IntegrationTest::new("heroku/buildpacks:20", "tests/fixtures/app_with_procfile")
IntegrationTest::new("heroku/builder:22", "tests/fixtures/app_with_procfile")
.buildpacks(vec![BuildpackReference::Crate])
.run_test(|context| {
assert_contains!(context.pack_stdout, "[Discovering process types]");
Expand Down

0 comments on commit 683de9b

Please sign in to comment.