mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-04 22:25:36 -04:00
* Github Action for Docker Integration on merge into develop Co-authored-by: Chris Plaatjes <chris.p@boxbrite.com>
83 lines
1.6 KiB
Bash
Executable File
83 lines
1.6 KiB
Bash
Executable File
#! /bin/bash
|
|
set -e
|
|
|
|
outputFolder='_output'
|
|
|
|
ProgressStart()
|
|
{
|
|
echo "Start '$1'"
|
|
}
|
|
|
|
ProgressEnd()
|
|
{
|
|
echo "Finish '$1'"
|
|
}
|
|
|
|
Build()
|
|
{
|
|
local RID="$1"
|
|
|
|
ProgressStart "Build for $RID"
|
|
|
|
slnFile=Kavita.sln
|
|
|
|
dotnet clean $slnFile -c Debug
|
|
dotnet clean $slnFile -c Release
|
|
|
|
dotnet msbuild -restore $slnFile -p:Configuration=Release -p:Platform="Any CPU" -p:RuntimeIdentifiers=$RID
|
|
|
|
ProgressEnd "Build for $RID"
|
|
}
|
|
|
|
Package()
|
|
{
|
|
local framework="$1"
|
|
local runtime="$2"
|
|
local lOutputFolder=../_output/"$runtime"/Kavita
|
|
|
|
ProgressStart "Creating $runtime Package for $framework"
|
|
|
|
# TODO: Use no-restore? Because Build should have already done it for us
|
|
echo "Building"
|
|
cd API
|
|
echo dotnet publish -c Release --no-restore --self-contained --runtime $runtime -o "$lOutputFolder" --framework $framework
|
|
dotnet publish -c Release --no-restore --self-contained --runtime $runtime -o "$lOutputFolder" --framework $framework
|
|
|
|
echo "Copying Install information"
|
|
cp ../INSTALL.txt "$lOutputFolder"/README.txt
|
|
|
|
echo "Copying LICENSE"
|
|
cp ../LICENSE "$lOutputFolder"/LICENSE.txt
|
|
|
|
echo "Renaming API -> Kavita"
|
|
mv "$lOutputFolder"/API "$lOutputFolder"/Kavita
|
|
|
|
echo "Creating tar"
|
|
cd ../$outputFolder/"$runtime"/
|
|
tar -czvf ../kavita-$runtime.tar.gz Kavita
|
|
|
|
ProgressEnd "Creating $runtime Package for $framework"
|
|
|
|
}
|
|
|
|
dir=$PWD
|
|
|
|
if [ -d _output ]
|
|
then
|
|
rm -r _output/
|
|
fi
|
|
|
|
#Build for x64
|
|
Build "linux-x64"
|
|
Package "net5.0" "linux-x64"
|
|
cd "$dir"
|
|
|
|
#Build for arm
|
|
Build "linux-arm"
|
|
Package "net5.0" "linux-arm"
|
|
cd "$dir"
|
|
|
|
#Build for arm64
|
|
Build "linux-arm64"
|
|
Package "net5.0" "linux-arm64"
|
|
cd "$dir" |