-
Notifications
You must be signed in to change notification settings - Fork 293
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding tests for builder create and improving logging messages
Signed-off-by: Juan Bustamante <jbustamante@vmware.com>
- Loading branch information
1 parent
574b3a2
commit 0ca0429
Showing
11 changed files
with
350 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
acceptance/testdata/pack_fixtures/builder_multi_platform-no-targets.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[[buildpacks]] | ||
id = "simple/layers" | ||
version = "simple-layers-version" | ||
uri = "{{ .BuildpackURI }}" | ||
|
||
[[order]] | ||
[[order.group]] | ||
id = "simple/layers" | ||
version = "simple-layers-version" | ||
|
||
[build] | ||
image = "{{ .BuildImage }}" | ||
|
||
[run] | ||
[[run.images]] | ||
image = "{{ .RunImage }}" | ||
|
||
|
||
|
28 changes: 28 additions & 0 deletions
28
acceptance/testdata/pack_fixtures/builder_multi_platform.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[[buildpacks]] | ||
id = "simple/layers" | ||
version = "simple-layers-version" | ||
uri = "{{ .BuildpackURI }}" | ||
|
||
[[order]] | ||
[[order.group]] | ||
id = "simple/layers" | ||
version = "simple-layers-version" | ||
|
||
# Targets the buildpack will work with | ||
[[targets]] | ||
os = "linux" | ||
arch = "amd64" | ||
|
||
[[targets]] | ||
os = "windows" | ||
arch = "arm64" | ||
|
||
[build] | ||
image = "{{ .BuildImage }}" | ||
|
||
[run] | ||
[[run.images]] | ||
image = "{{ .RunImage }}" | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.