mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
Update build.yml
This commit is contained in:
parent
1e90588664
commit
0394d5fb9f
8 changed files with 40 additions and 55 deletions
67
.github/workflows/build.yml
vendored
67
.github/workflows/build.yml
vendored
|
@ -38,7 +38,7 @@ jobs:
|
||||||
mkdir -p "HISPd/bin/x64/Linux/net7.0/linux-x64/native/gamedata"
|
mkdir -p "HISPd/bin/x64/Linux/net7.0/linux-x64/native/gamedata"
|
||||||
cp -r "../../HorseIsleData/gamedata" "HISPd/bin/x64/Linux/net7.0/linux-x64/native"
|
cp -r "../../HorseIsleData/gamedata" "HISPd/bin/x64/Linux/net7.0/linux-x64/native"
|
||||||
cp "../../HorseIsleData/HI1.MAP" "HISPd/bin/x64/Linux/net7.0/linux-x64/native/HI1.MAP"
|
cp "../../HorseIsleData/HI1.MAP" "HISPd/bin/x64/Linux/net7.0/linux-x64/native/HI1.MAP"
|
||||||
cp "HISPd/bin/x64/Linux/net7.0/linux-x64/e_sqlite3.so" "HISPd/bin/x64/Linux/net7.0/linux-x64/native/e_sqlite3.so"
|
cp "HISPd/bin/x64/Linux/net7.0/linux-x64/publish/e_sqlite3.so" "HISPd/bin/x64/Linux/net7.0/linux-x64/native/e_sqlite3.so"
|
||||||
rm -f "HISPd/bin/x64/Linux/net7.0/linux-x64/native/HISPd.pdb"
|
rm -f "HISPd/bin/x64/Linux/net7.0/linux-x64/native/HISPd.pdb"
|
||||||
rm -f "HISPd/bin/x64/Linux/net7.0/linux-x64/native/HISPd.lib"
|
rm -f "HISPd/bin/x64/Linux/net7.0/linux-x64/native/HISPd.lib"
|
||||||
rm -f "HISPd/bin/x64/Linux/net7.0/linux-x64/native/HISPd.exp"
|
rm -f "HISPd/bin/x64/Linux/net7.0/linux-x64/native/HISPd.exp"
|
||||||
|
@ -63,38 +63,37 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
apt update
|
apt update
|
||||||
apt install -y dos2unix
|
apt install -y dos2unix
|
||||||
mkdir /mnt/debpkg
|
mkdir /tmp/debpkg
|
||||||
mount -t tmpfs -o size=800M tmpfs /mnt/debpkg
|
mkdir /tmp/debpkg/Debian64
|
||||||
mkdir /mnt/debpkg/Debian64
|
mkdir /tmp/debpkg/Debian64/etc
|
||||||
mkdir /mnt/debpkg/Debian64/etc
|
mkdir /tmp/debpkg/Debian64/usr
|
||||||
mkdir /mnt/debpkg/Debian64/usr
|
mkdir /tmp/debpkg/Debian64/etc/hisp
|
||||||
mkdir /mnt/debpkg/Debian64/etc/hisp
|
mkdir /tmp/debpkg/Debian64/etc/hisp/gamedata
|
||||||
mkdir /mnt/debpkg/Debian64/etc/hisp/gamedata
|
mkdir /tmp/debpkg/Debian64/etc/systemd
|
||||||
mkdir /mnt/debpkg/Debian64/etc/systemd
|
mkdir /tmp/debpkg/Debian64/etc/systemd/system
|
||||||
mkdir /mnt/debpkg/Debian64/etc/systemd/system
|
mkdir /tmp/debpkg/Debian64/usr/bin
|
||||||
mkdir /mnt/debpkg/Debian64/usr/bin
|
mkdir /tmp/debpkg/Debian64/usr/lib
|
||||||
mkdir /mnt/debpkg/Debian64/usr/lib
|
mkdir /tmp/debpkg/Debian64/DEBIAN
|
||||||
mkdir /mnt/debpkg/Debian64/DEBIAN
|
cp LibHISP/Resources/server.properties /tmp/debpkg/Debian64/etc/hisp/server.properties
|
||||||
cp LibHISP/Resources/server.properties /mnt/debpkg/Debian64/etc/hisp/server.properties
|
cp LibHISP/Resources/default_cross_domain.xml /tmp/debpkg/Debian64/etc/hisp/CrossDomainPolicy.xml
|
||||||
cp LibHISP/Resources/default_cross_domain.xml /mnt/debpkg/Debian64/etc/hisp/CrossDomainPolicy.xml
|
cp -r HISPd/Resources/DEBIAN/* /tmp/debpkg/Debian64/DEBIAN
|
||||||
cp -r HISPd/Resources/DEBIAN/* /mnt/debpkg/Debian64/DEBIAN
|
cp -r HISPd/bin/x64/Linux/net7.0/linux-x64/publish/gamedata/* /tmp/debpkg/Debian64/etc/hisp/gamedata
|
||||||
cp -r HISPd/bin/x64/Linux/net7.0/linux-x64/publish/gamedata/* /mnt/debpkg/Debian64/etc/hisp/gamedata
|
cp HISPd/bin/x64/Linux/net7.0/linux-x64/publish/libe_sqlite3.so /tmp/debpkg/Debian64/usr/lib/libe_sqlite3.so
|
||||||
cp HISPd/bin/x64/Linux/net7.0/linux-x64/publish/libe_sqlite3.so /mnt/debpkg/Debian64/usr/lib/libe_sqlite3.so
|
cp HISPd/bin/x64/Linux/net7.0/linux-x64/publish/HI1.MAP /tmp/debpkg/Debian64/etc/hisp/HI1.MAP
|
||||||
cp HISPd/bin/x64/Linux/net7.0/linux-x64/publish/HI1.MAP /mnt/debpkg/Debian64/etc/hisp/HI1.MAP
|
cp HISPd/bin/x64/Linux/net7.0/linux-x64/publish/HISPd /tmp/debpkg/Debian64/usr/bin/HISPd
|
||||||
cp HISPd/bin/x64/Linux/net7.0/linux-x64/publish/HISPd /mnt/debpkg/Debian64/usr/bin/HISPd
|
cp HISPd/Resources/HISP.service /tmp/debpkg/Debian64/etc/systemd/system/HISP.service
|
||||||
cp HISPd/Resources/HISP.service /mnt/debpkg/Debian64/etc/systemd/system/HISP.service
|
cat /tmp/debpkg/Debian64/DEBIAN/control
|
||||||
cat /mnt/debpkg/Debian64/DEBIAN/control
|
dos2unix /tmp/debpkg/Debian64/DEBIAN/conffiles
|
||||||
dos2unix /mnt/debpkg/Debian64/DEBIAN/conffiles
|
dos2unix /tmp/debpkg/Debian64/DEBIAN/control
|
||||||
dos2unix /mnt/debpkg/Debian64/DEBIAN/control
|
dos2unix /tmp/debpkg/Debian64/DEBIAN/postinst
|
||||||
dos2unix /mnt/debpkg/Debian64/DEBIAN/postinst
|
dos2unix /tmp/debpkg/Debian64/DEBIAN/postrm
|
||||||
dos2unix /mnt/debpkg/Debian64/DEBIAN/postrm
|
dos2unix /tmp/debpkg/Debian64/DEBIAN/prerm
|
||||||
dos2unix /mnt/debpkg/Debian64/DEBIAN/prerm
|
dos2unix /tmp/debpkg/Debian64/etc/systemd/system/HISP.service
|
||||||
dos2unix /mnt/debpkg/Debian64/etc/systemd/system/HISP.service
|
chmod 755 -R /tmp/debpkg/Debian64
|
||||||
chmod 755 -R /mnt/debpkg/Debian64
|
chmod +x /tmp/debpkg/Debian64/usr/bin/HISPd
|
||||||
chmod +x /mnt/debpkg/Debian64/usr/bin/HISPd
|
|
||||||
mkdir debpackage
|
mkdir debpackage
|
||||||
dpkg-deb --build /mnt/debpkg/Debian64
|
dpkg-deb --build /tmp/debpkg/Debian64
|
||||||
mv /mnt/debpkg/Debian64.deb debpackage/HISP-Debian-AMD64.deb
|
mv /tmp/debpkg/Debian64.deb debpackage/HISP-Debian-AMD64.deb
|
||||||
|
|
||||||
|
|
||||||
#android .. maybe someday
|
#android .. maybe someday
|
||||||
|
@ -176,7 +175,7 @@ jobs:
|
||||||
mkdir "HISPd\bin\x64\Windows\net7.0\win-x64\native\gamedata"
|
mkdir "HISPd\bin\x64\Windows\net7.0\win-x64\native\gamedata"
|
||||||
copy "..\HorseIsleData\gamedata\*" "HISPd\bin\x64\Windows\net7.0\win-x64\native\gamedata"
|
copy "..\HorseIsleData\gamedata\*" "HISPd\bin\x64\Windows\net7.0\win-x64\native\gamedata"
|
||||||
copy "..\HorseIsleData\HI1.MAP" "HISPd\bin\x64\Windows\net7.0\win-x64\native\HI1.MAP"
|
copy "..\HorseIsleData\HI1.MAP" "HISPd\bin\x64\Windows\net7.0\win-x64\native\HI1.MAP"
|
||||||
copy "HISPd\bin\x64\Windows\net7.0\win-x64\e_sqlite3.dll" "HISPd\bin\x64\Windows\net7.0\win-x64\native\e_sqlite3.dll"
|
copy "HISPd\bin\x64\Windows\net7.0\win-x64\publish\e_sqlite3.dll" "HISPd\bin\x64\Windows\net7.0\win-x64\native\e_sqlite3.dll"
|
||||||
del "HISPd\bin\x64\Windows\net7.0\win-x64\native\HISPd.pdb"
|
del "HISPd\bin\x64\Windows\net7.0\win-x64\native\HISPd.pdb"
|
||||||
del "HISPd\bin\x64\Windows\net7.0\win-x64\native\HISPd.lib"
|
del "HISPd\bin\x64\Windows\net7.0\win-x64\native\HISPd.lib"
|
||||||
del "HISPd\bin\x64\Windows\net7.0\win-x64\native\HISPd.exp"
|
del "HISPd\bin\x64\Windows\net7.0\win-x64\native\HISPd.exp"
|
||||||
|
@ -201,7 +200,7 @@ jobs:
|
||||||
mkdir "HISPd\bin\ARM64\Windows\net7.0\win-arm64\native\gamedata"
|
mkdir "HISPd\bin\ARM64\Windows\net7.0\win-arm64\native\gamedata"
|
||||||
copy "..\HorseIsleData\gamedata\*" "HISPd\bin\ARM64\Windows\net7.0\win-arm64\native\gamedata"
|
copy "..\HorseIsleData\gamedata\*" "HISPd\bin\ARM64\Windows\net7.0\win-arm64\native\gamedata"
|
||||||
copy "..\HorseIsleData\HI1.MAP" "HISPd\bin\ARM64\Windows\net7.0\win-arm64\native\HI1.MAP"
|
copy "..\HorseIsleData\HI1.MAP" "HISPd\bin\ARM64\Windows\net7.0\win-arm64\native\HI1.MAP"
|
||||||
copy "HISPd\bin\ARM64\Windows\net7.0\win-arm64\e_sqlite3.dll" "HISPd\bin\ARM64\Windows\net7.0\win-arm64\native\e_sqlite3.dll"
|
copy "HISPd\bin\ARM64\Windows\net7.0\win-arm64\publish\e_sqlite3.dll" "HISPd\bin\ARM64\Windows\net7.0\win-arm64\native\e_sqlite3.dll"
|
||||||
del "HISPd\bin\ARM64\Windows\net7.0\win-arm64\native\HISPd.pdb"
|
del "HISPd\bin\ARM64\Windows\net7.0\win-arm64\native\HISPd.pdb"
|
||||||
del "HISPd\bin\ARM64\Windows\net7.0\win-arm64\native\HISPd.lib"
|
del "HISPd\bin\ARM64\Windows\net7.0\win-arm64\native\HISPd.lib"
|
||||||
del "HISPd\bin\ARM64\Windows\net7.0\win-arm64\native\HISPd.exp"
|
del "HISPd\bin\ARM64\Windows\net7.0\win-arm64\native\HISPd.exp"
|
||||||
|
|
|
@ -22,10 +22,6 @@
|
||||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="Microsoft.DotNet.ILCompiler" Version="7.0.0-preview.5.22301.12" />
|
|
||||||
<PackageReference Include="runtime.win-x64.Microsoft.DotNet.ILCompiler" Version="7.0.0-preview.5.22301.12" />
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
|
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
|
||||||
<GenerateBindingRedirectsOutputType>false</GenerateBindingRedirectsOutputType>
|
<GenerateBindingRedirectsOutputType>false</GenerateBindingRedirectsOutputType>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Package: hisp
|
Package: hisp
|
||||||
Version: 1.7.48
|
Version: 1.7.59
|
||||||
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
||||||
Maintainer: Li
|
Maintainer: Li
|
||||||
Homepage: https://islehorse.com
|
Homepage: https://islehorse.com
|
||||||
|
|
|
@ -28,8 +28,8 @@
|
||||||
</ContentWithTargetPath>
|
</ContentWithTargetPath>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.0-preview.5.22302.2" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.0-preview.6.22329.4" />
|
||||||
<PackageReference Include="MySqlConnector" Version="2.1.10" />
|
<PackageReference Include="MySqlConnector" Version="2.1.11" />
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.2-beta1" />
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.2-beta1" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<PropertyGroup>
|
|
||||||
<_LastSelectedProfileId>C:\Users\Li\Documents\git\HISP\HorseIsleServer\LibHISP\Properties\PublishProfiles\Linux64.pubxml</_LastSelectedProfileId>
|
|
||||||
</PropertyGroup>
|
|
||||||
</Project>
|
|
|
@ -30,5 +30,5 @@ using System.Runtime.InteropServices;
|
||||||
//
|
//
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
[assembly: AssemblyVersion("1.7.48.0")]
|
[assembly: AssemblyVersion("1.7.59.0")]
|
||||||
[assembly: AssemblyFileVersion("1.7.48.0")]
|
[assembly: AssemblyFileVersion("1.7.59.0")]
|
||||||
|
|
|
@ -143,9 +143,5 @@
|
||||||
<Optimize>False</Optimize>
|
<Optimize>False</Optimize>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
|
||||||
<Exec Command="cd "$(SolutionDir)"
py "$(SolutionDir)prebuild.py"" />
|
|
||||||
</Target>
|
|
||||||
|
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.7.48.0")]
|
[assembly: AssemblyVersion("1.7.59.0")]
|
||||||
[assembly: AssemblyFileVersion("1.7.48.0")]
|
[assembly: AssemblyFileVersion("1.7.59.0")]
|
||||||
|
|
Loading…
Add table
Reference in a new issue