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
27 lines
No EOL
1.4 KiB
XML
27 lines
No EOL
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="14.0" DefaultTargets="Layout" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$(MSBuildThisFileDirectory)/package/Layout.targets" />
|
|
<Import Project="$(MSBuildThisFileDirectory)/package/Archive.targets" />
|
|
<Import Project="$(MSBuildThisFileDirectory)/package/Nupkg.targets" />
|
|
<Import Project="$(MSBuildThisFileDirectory)/package/Installer.DEB.proj" />
|
|
<Import Project="$(MSBuildThisFileDirectory)/package/Installer.MSI.targets" />
|
|
<Import Project="$(MSBuildThisFileDirectory)/package/Installer.PKG.targets" />
|
|
<Import Project="$(MSBuildThisFileDirectory)/package/Installer.RPM.targets" />
|
|
<Import Project="$(MSBuildThisFileDirectory)/package/CopySandBoxPackageOut.targets" />
|
|
|
|
<Target Name="GenerateInstallers"
|
|
Condition=" '$(SkipBuildingInstallers)' != 'true' "
|
|
DependsOnTargets="Prepare;Layout;GeneratePkgs;GenerateDebs;GenerateMsis;GenerateRpms" />
|
|
|
|
<Target Name="Package"
|
|
DependsOnTargets="BuildDotnetCliBuildFramework;
|
|
Init;
|
|
Layout;
|
|
GenerateNugetPackages;
|
|
GenerateArchives;
|
|
GenerateInstallers" />
|
|
|
|
<Target Name="GenerateInstallersAndCopyOutOfSandBox"
|
|
DependsOnTargets="SandBoxPrepare;Layout;GenerateDebs;GenerateRpms;CopySandBoxPackageOut" />
|
|
|
|
</Project> |