-
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.
Standardize site configuration resolution of multiple files
- Dumping site platform_path_maps now sorts the keys alphabetically - Correct issues with left wins setup for using multiple site json files and make the tests for this easy to understand by using left/middle/right terminology.
- Loading branch information
1 parent
20cd099
commit 31049d8
Showing
8 changed files
with
298 additions
and
16 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
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,25 @@ | ||
{ | ||
"prepend": { | ||
"test_paths": [ | ||
"left_prepend" | ||
] | ||
}, | ||
"append": { | ||
"test_paths": [ | ||
"left_append" | ||
], | ||
"platform_path_maps": { | ||
"host": { | ||
"linux": "host-linux_left", | ||
"windows": "host-windows_left" | ||
}, | ||
"shared": { | ||
"linux": "shared-linux_left", | ||
"windows": "shared-windows_left" | ||
} | ||
} | ||
}, | ||
"set": { | ||
"set_value": "left" | ||
} | ||
} |
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,25 @@ | ||
{ | ||
"prepend": { | ||
"test_paths": [ | ||
"middle_prepend" | ||
] | ||
}, | ||
"append": { | ||
"test_paths": [ | ||
"middle_append" | ||
], | ||
"platform_path_maps": { | ||
"host": { | ||
"linux": "host-linux_middle", | ||
"windows": "host-windows_middle" | ||
}, | ||
"mid": { | ||
"linux": "mid-linux_middle", | ||
"windows": "mid-windows_middle" | ||
} | ||
} | ||
}, | ||
"set": { | ||
"set_value": "middle" | ||
} | ||
} |
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,25 @@ | ||
{ | ||
"prepend": { | ||
"test_paths": [ | ||
"right_prepend" | ||
] | ||
}, | ||
"append": { | ||
"test_paths": [ | ||
"right_append" | ||
], | ||
"platform_path_maps": { | ||
"host": { | ||
"linux": "host-linux_right", | ||
"windows": "host-windows_right" | ||
}, | ||
"net": { | ||
"linux": "net-linux_right", | ||
"windows": "net-windows_right" | ||
} | ||
} | ||
}, | ||
"set": { | ||
"set_value": "right" | ||
} | ||
} |
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