-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
4/4: Add testing for the new hab install and DistroFinder features
- Loading branch information
1 parent
0a3376d
commit 988eca6
Showing
11 changed files
with
723 additions
and
37 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
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,32 @@ | ||
{ | ||
"set": | ||
{ | ||
"distro_paths": | ||
[ | ||
[ | ||
"hab.distro_finders.distro_finder:DistroFinder", | ||
"hab testable/download/path" | ||
], | ||
[ | ||
"hab.distro_finders.distro_finder:DistroFinder", | ||
"hab testing/downloads", | ||
{ | ||
"site": "for testing only, do not specify site" | ||
} | ||
] | ||
], | ||
"downloads": | ||
{ | ||
"cache_root": "hab testable/download/path", | ||
"distros": | ||
[ | ||
[ | ||
"hab.distro_finders.df_zip:DistroFinderZip", | ||
"network_server/distro/source" | ||
] | ||
], | ||
"install_root": "{relative_root}/distros", | ||
"relative_path": "{{distro_name}}_v{{version}}" | ||
} | ||
} | ||
} |
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,7 @@ | ||
{ | ||
"set": { | ||
"downloads": { | ||
"cache_root": "" | ||
} | ||
} | ||
} |
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,12 @@ | ||
{ | ||
"set": | ||
{ | ||
"distro_paths": | ||
[ | ||
[ | ||
"hab.distro_finders.df_zip:DistroFinderZip", | ||
"{{ zip_root }}" | ||
] | ||
] | ||
} | ||
} |
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,12 @@ | ||
{ | ||
"set": | ||
{ | ||
"distro_paths": | ||
[ | ||
[ | ||
"hab.distro_finders.zip_sidecar:DistroFinderZipSidecar", | ||
"{{ zip_root }}" | ||
] | ||
] | ||
} | ||
} |
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,20 @@ | ||
{ | ||
"set": { | ||
"config_paths": [ | ||
"{relative_root}/configs" | ||
], | ||
"distro_paths": [ | ||
"{relative_root}/distros/*" | ||
], | ||
"downloads": { | ||
"cache_root": "{relative_root}/downloads", | ||
"distros": [ | ||
[ | ||
"hab.distro_finders.df_zip:DistroFinderZip", | ||
"{{ zip_root }}" | ||
] | ||
], | ||
"install_root": "{relative_root}/distros" | ||
} | ||
} | ||
} |
Oops, something went wrong.