221ab05346
By using `./build.sh /t:AllLiuxDistrosNativeInstaller` Make a sandbox folder after compile step and copy compiled artifact to it. Since the content will be Linux generic, use package step with Docker in different distros. After finishing all the distro specific packaging, upload all of them at once Publish to debian only support all distro Improve perf of AllLiuxDistrosNativeInstaller, by copying more cache in to sandbox There will be a retry if package command failed
9 lines
330 B
XML
9 lines
330 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Target Name="CopySandBoxPackageOut">
|
|
<Copy
|
|
SourceFiles="@(GeneratedInstallers)"
|
|
DestinationFolder="$(RepoRoot)/$(RelativeSandBoxPackageOutputFolder)"/>
|
|
</Target>
|
|
|
|
</Project>
|