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
28 lines
No EOL
1.3 KiB
XML
28 lines
No EOL
1.3 KiB
XML
<Project>
|
|
<ItemGroup>
|
|
<LinuxDistrosNeedNativeInstaller Include="ubuntu.16.04-x64">
|
|
<DockerFolder>ubuntu.16.04</DockerFolder>
|
|
<InstallerExtension>deb</InstallerExtension>
|
|
<RepositoryId>$(ubuntu1604x64RepositoryId)</RepositoryId>
|
|
<DistroNameInInstaller>ubuntu.16.04-x64</DistroNameInInstaller>
|
|
</LinuxDistrosNeedNativeInstaller>
|
|
<LinuxDistrosNeedNativeInstaller Include="ubuntu.14.04-x64">
|
|
<DockerFolder>ubuntu.14.04</DockerFolder>
|
|
<InstallerExtension>deb</InstallerExtension>
|
|
<RepositoryId>$(ubuntu1404x64RepositoryId)</RepositoryId>
|
|
<DistroNameInInstaller>ubuntu-x64</DistroNameInInstaller>
|
|
</LinuxDistrosNeedNativeInstaller>
|
|
<LinuxDistrosNeedNativeInstaller Include="debian.8-x64">
|
|
<DockerFolder>debian</DockerFolder>
|
|
<InstallerExtension>deb</InstallerExtension>
|
|
<RepositoryId>$(debian8x64RepositoryId)</RepositoryId>
|
|
<DistroNameInInstaller>debian-x64</DistroNameInInstaller>
|
|
</LinuxDistrosNeedNativeInstaller>
|
|
<LinuxDistrosNeedNativeInstaller Include="rhel.7-x64">
|
|
<DockerFolder>rhel</DockerFolder>
|
|
<InstallerExtension>rpm</InstallerExtension>
|
|
<RepositoryId>$(rhel7x64RepositoryId)</RepositoryId>
|
|
<DistroNameInInstaller>rhel-x64</DistroNameInInstaller>
|
|
</LinuxDistrosNeedNativeInstaller>
|
|
</ItemGroup>
|
|
</Project> |