mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 13:23:20 -07:00
Merge branch 'develop' of https://github.com/tidusjar/Ombi into develop
This commit is contained in:
commit
4df7fc7b6c
3 changed files with 22 additions and 2 deletions
|
@ -36,6 +36,9 @@ after_build:
|
||||||
appveyor PushArtifact "%APPVEYOR_BUILD_FOLDER%\src\Ombi\bin\Release\netcoreapp2.2\linux.tar.gz"
|
appveyor PushArtifact "%APPVEYOR_BUILD_FOLDER%\src\Ombi\bin\Release\netcoreapp2.2\linux.tar.gz"
|
||||||
|
|
||||||
|
|
||||||
|
appveyor PushArtifact "%APPVEYOR_BUILD_FOLDER%\src\Ombi\bin\Release\netcoreapp2.2\linux-arm.tar.gz"
|
||||||
|
|
||||||
|
|
||||||
appveyor PushArtifact "%APPVEYOR_BUILD_FOLDER%\src\Ombi\bin\Release\netcoreapp2.2\windows-32bit.zip"
|
appveyor PushArtifact "%APPVEYOR_BUILD_FOLDER%\src\Ombi\bin\Release\netcoreapp2.2\windows-32bit.zip"
|
||||||
|
|
||||||
|
|
||||||
|
|
17
build.cake
17
build.cake
|
@ -47,6 +47,7 @@ var windowsArtifactsFolder = artifactsFolder + "win10-x64/published";
|
||||||
var windows32BitArtifactsFolder = artifactsFolder + "win10-x86/published";
|
var windows32BitArtifactsFolder = artifactsFolder + "win10-x86/published";
|
||||||
var osxArtifactsFolder = artifactsFolder + "osx-x64/published";
|
var osxArtifactsFolder = artifactsFolder + "osx-x64/published";
|
||||||
var linuxArtifactsFolder = artifactsFolder + "linux-x64/published";
|
var linuxArtifactsFolder = artifactsFolder + "linux-x64/published";
|
||||||
|
var linuxArmArtifactsFolder = artifactsFolder + "linux-arm/published";
|
||||||
var linuxArm64BitArtifactsFolder = artifactsFolder + "linux-arm64/published";
|
var linuxArm64BitArtifactsFolder = artifactsFolder + "linux-arm64/published";
|
||||||
|
|
||||||
|
|
||||||
|
@ -149,6 +150,7 @@ Task("Package")
|
||||||
Zip(windows32BitArtifactsFolder +"/",artifactsFolder + "windows-32bit.zip");
|
Zip(windows32BitArtifactsFolder +"/",artifactsFolder + "windows-32bit.zip");
|
||||||
GZipCompress(osxArtifactsFolder, artifactsFolder + "osx.tar.gz");
|
GZipCompress(osxArtifactsFolder, artifactsFolder + "osx.tar.gz");
|
||||||
GZipCompress(linuxArtifactsFolder, artifactsFolder + "linux.tar.gz");
|
GZipCompress(linuxArtifactsFolder, artifactsFolder + "linux.tar.gz");
|
||||||
|
GZipCompress(linuxArmArtifactsFolder, artifactsFolder + "linux-arm.tar.gz");
|
||||||
GZipCompress(linuxArm64BitArtifactsFolder, artifactsFolder + "linux-arm64.tar.gz");
|
GZipCompress(linuxArm64BitArtifactsFolder, artifactsFolder + "linux-arm64.tar.gz");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -158,6 +160,7 @@ Task("Publish")
|
||||||
.IsDependentOn("Publish-Windows-32bit")
|
.IsDependentOn("Publish-Windows-32bit")
|
||||||
.IsDependentOn("Publish-OSX")
|
.IsDependentOn("Publish-OSX")
|
||||||
.IsDependentOn("Publish-Linux")
|
.IsDependentOn("Publish-Linux")
|
||||||
|
.IsDependentOn("Publish-Linux-ARM")
|
||||||
.IsDependentOn("Publish-Linux-ARM-64Bit")
|
.IsDependentOn("Publish-Linux-ARM-64Bit")
|
||||||
.IsDependentOn("Package");
|
.IsDependentOn("Package");
|
||||||
|
|
||||||
|
@ -214,6 +217,20 @@ Task("Publish-Linux")
|
||||||
DotNetCorePublish("./src/Ombi.Updater/Ombi.Updater.csproj", publishSettings);
|
DotNetCorePublish("./src/Ombi.Updater/Ombi.Updater.csproj", publishSettings);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Task("Publish-Linux-ARM")
|
||||||
|
.Does(() =>
|
||||||
|
{
|
||||||
|
publishSettings.Runtime = "linux-arm";
|
||||||
|
publishSettings.OutputDirectory = Directory(buildDir) + Directory(frameworkVer+"/linux-arm/published");
|
||||||
|
|
||||||
|
DotNetCorePublish("./src/Ombi/Ombi.csproj", publishSettings);
|
||||||
|
CopyFile(
|
||||||
|
buildDir + "/"+frameworkVer+"/linux-arm/Swagger.xml",
|
||||||
|
buildDir + "/"+frameworkVer+"/linux-arm/published/Swagger.xml");
|
||||||
|
|
||||||
|
publishSettings.OutputDirectory = Directory(buildDir) + Directory(frameworkVer +"/linux-arm/published/updater");
|
||||||
|
DotNetCorePublish("./src/Ombi.Updater/Ombi.Updater.csproj", publishSettings);
|
||||||
|
});
|
||||||
|
|
||||||
Task("Publish-Linux-ARM-64Bit")
|
Task("Publish-Linux-ARM-64Bit")
|
||||||
.Does(() =>
|
.Does(() =>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk.Web">
|
<Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk.Web">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.2</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<RuntimeIdentifiers>win10-x64;win10-x86;osx-x64;linux-x64;linux-arm64;</RuntimeIdentifiers>
|
<RuntimeIdentifiers>win10-x64;win10-x86;osx-x64;linux-x64;linux-arm;linux-arm64;</RuntimeIdentifiers>
|
||||||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
||||||
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion>
|
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion>
|
||||||
<AssemblyVersion>$(SemVer)</AssemblyVersion>
|
<AssemblyVersion>$(SemVer)</AssemblyVersion>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue