Skip to content

Commit

Permalink
DiligentCore.NET: Reworked dotnet-build-package.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MikhailGorobets committed Aug 14, 2023
1 parent 731040e commit 074fe49
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions BuildTools/.NET/dotnet-build-package.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,8 @@ def dotnet_restore_nuget_package(src_dir):
subprocess.run(f"dotnet restore --no-cache {src_dir}", check=True)


def dotnet_build_and_run_tests(config, settings, arch):
dotnet_generate_version(f"{project_paths['dotnet-build']}/{project_paths['dotnet-tests']}")
def dotnet_build_and_run_tests(config, settings, arch, is_local):
dotnet_generate_version(f"{project_paths['dotnet-build']}/{project_paths['dotnet-tests']}", is_local)
dotnet_copy_nuget_package(f"{project_paths['dotnet-build']}/{project_paths['dotnet-proj']}/bin/{config}",
f"{project_paths['dotnet-build']}/{project_paths['dotnet-tests']}/LocalPackages")
dotnet_restore_nuget_package(project_paths['dotnet-tests'])
Expand Down Expand Up @@ -292,12 +292,10 @@ def main():
required=True)
parser.add_argument("-s", "--settings",
required=False)

group = parser.add_mutually_exclusive_group()
group.add_argument('--dotnet-tests',
parser.add_argument('--dotnet-tests',
action=BooleanOptionalAction,
help="Use this flag to build and run .NET tests")
group.add_argument('--dotnet-publish',
parser.add_argument('--dotnet-publish',
action=BooleanOptionalAction,
help="Use this flag to publish nuget package")
parser.add_argument('--free-memory',
Expand All @@ -320,12 +318,10 @@ def main():
for arch in arch_settings.keys():
free_disk_memory(arch_settings[arch])

dotnet_pack_project(args.configuration, not args.dotnet_publish)
if args.dotnet_tests:
dotnet_pack_project(args.configuration, True)
for arch in arch_settings.keys():
dotnet_build_and_run_tests(args.configuration, os_settings, arch)
elif args.dotnet_publish:
dotnet_pack_project(args.configuration, False)
dotnet_build_and_run_tests(args.configuration, os_settings, arch, not args.dotnet_publish)


if __name__ == "__main__":
Expand Down

0 comments on commit 074fe49

Please sign in to comment.