Use ubuntu not linux when referencing artifacts, add dupe check
parent
1c9f5fce2a
commit
5589975761
|
|
@ -17,7 +17,7 @@
|
||||||
"os_hosted_folder": {
|
"os_hosted_folder": {
|
||||||
"windows": "windows",
|
"windows": "windows",
|
||||||
"macos": "mac",
|
"macos": "mac",
|
||||||
"linux": "linux"
|
"ubuntu": "linux"
|
||||||
},
|
},
|
||||||
"platforms_printable": {
|
"platforms_printable": {
|
||||||
"windows": "MS Windows",
|
"windows": "MS Windows",
|
||||||
|
|
|
||||||
|
|
@ -227,8 +227,9 @@ def unpack_artifacts(path_to_artifacts_directory, config):
|
||||||
"build_type_fullpath": build_type_dir,
|
"build_type_fullpath": build_type_dir,
|
||||||
"os_folders": [],
|
"os_folders": [],
|
||||||
}
|
}
|
||||||
print(f"Appended {os_folder} to build_type {build_type}")
|
if os_folder not in build_types_found[build_type]["os_folders"]:
|
||||||
build_types_found[build_type]["os_folders"].append(os_folder)
|
build_types_found[build_type]["os_folders"].append(os_folder)
|
||||||
|
print(f"Appended {os_folder} to build_type {build_type}")
|
||||||
print(f"Finished processing artifacts for build_type {build_type}")
|
print(f"Finished processing artifacts for build_type {build_type}")
|
||||||
return build_types_found
|
return build_types_found
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue