mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12:00
use dotnet-script
This commit is contained in:
parent
c253722964
commit
0f0e092461
6 changed files with 28 additions and 21 deletions
33
.github/workflows/build.yml
vendored
33
.github/workflows/build.yml
vendored
|
@ -27,7 +27,8 @@ jobs:
|
|||
run: |
|
||||
sudo apt update
|
||||
sudo apt install -y clang zlib1g-dev dos2unix
|
||||
|
||||
dotnet tool install -g dotnet-script
|
||||
|
||||
- name: Restore dependencies
|
||||
run: |
|
||||
dotnet restore LibHISP
|
||||
|
@ -37,10 +38,10 @@ jobs:
|
|||
continue-on-error: false
|
||||
run: |
|
||||
cd HISPd
|
||||
dotnet publish -p:PublishProfile=Linux64.pubxml -v diag
|
||||
dotnet publish -p:PublishProfile=Linux64.pubxml
|
||||
cd ..
|
||||
cd MPN00BS
|
||||
dotnet publish -p:PublishProfile=Linux64.pubxml -v diag
|
||||
dotnet publish -p:PublishProfile=Linux64.pubxml
|
||||
cd ..
|
||||
|
||||
# Currently broken ...
|
||||
|
@ -61,14 +62,14 @@ jobs:
|
|||
continue-on-error: false
|
||||
run: |
|
||||
cd HISPd
|
||||
dotnet publish -p:PublishProfile=LinuxARM.pubxml -v diag
|
||||
dotnet publish -p:PublishProfile=LinuxARM.pubxml
|
||||
cd ..
|
||||
# nativeaot linux arm64
|
||||
- name: Build linux-arm64
|
||||
continue-on-error: false
|
||||
run: |
|
||||
cd HISPd
|
||||
dotnet publish -p:PublishProfile=LinuxARM64.pubxml -v diag
|
||||
dotnet publish -p:PublishProfile=LinuxARM64.pubxml
|
||||
cd ..
|
||||
|
||||
# dotnet add HISPd package Microsoft.DotNet.ILCompiler --prerelease
|
||||
|
@ -193,6 +194,9 @@ jobs:
|
|||
dotnet-version: 7.0.x
|
||||
include-prerelease: true
|
||||
|
||||
- name: Install utils
|
||||
run: dotnet tool install -g dotnet-script
|
||||
|
||||
- name: Restore dependencies
|
||||
run: dotnet restore
|
||||
|
||||
|
@ -201,10 +205,10 @@ jobs:
|
|||
continue-on-error: false
|
||||
run: |
|
||||
cd HISPd
|
||||
dotnet publish -p:PublishProfile=Win64.pubxml -v diag
|
||||
dotnet publish -p:PublishProfile=Win64.pubxml
|
||||
cd ..
|
||||
cd MPN00BS
|
||||
dotnet publish -p:PublishProfile=Win64.pubxml -v diag
|
||||
dotnet publish -p:PublishProfile=Win64.pubxml
|
||||
cd ..
|
||||
|
||||
# dotnet add HISPd package Microsoft.DotNet.ILCompiler --prerelease
|
||||
|
@ -226,23 +230,23 @@ jobs:
|
|||
continue-on-error: false
|
||||
run: |
|
||||
cd HISPd
|
||||
dotnet publish -p:PublishProfile=Win32.pubxml -v diag
|
||||
dotnet publish -p:PublishProfile=Win32.pubxml
|
||||
cd ..
|
||||
cd MPN00BS
|
||||
dotnet publish -p:PublishProfile=Win32.pubxml -v diag
|
||||
dotnet publish -p:PublishProfile=Win32.pubxml
|
||||
cd ..
|
||||
- name: Build win-arm
|
||||
continue-on-error: false
|
||||
run: |
|
||||
cd HISPd
|
||||
dotnet publish -p:PublishProfile=WinARM.pubxml -v diag
|
||||
dotnet publish -p:PublishProfile=WinARM.pubxml
|
||||
cd ..
|
||||
#nativeaot arm64 build
|
||||
- name: Build win-arm64
|
||||
continue-on-error: false
|
||||
run: |
|
||||
cd HISPd
|
||||
dotnet publish -p:PublishProfile=WinARM64.pubxml -v diag
|
||||
dotnet publish -p:PublishProfile=WinARM64.pubxml
|
||||
cd ..
|
||||
# dotnet add HISPd package Microsoft.DotNet.ILCompiler --prerelease
|
||||
# dotnet add HISPd package runtime.win-x64.Microsoft.DotNet.ILCompiler --prerelease
|
||||
|
@ -313,6 +317,9 @@ jobs:
|
|||
with:
|
||||
dotnet-version: 7.0.x
|
||||
include-prerelease: true
|
||||
|
||||
- name: Install utils
|
||||
run: dotnet tool install -g dotnet-script
|
||||
|
||||
- name: Restore dependencies
|
||||
run: |
|
||||
|
@ -323,13 +330,13 @@ jobs:
|
|||
continue-on-error: false
|
||||
run: |
|
||||
cd HISPd
|
||||
dotnet publish -p:PublishProfile=Osx64.pubxml -v diag
|
||||
dotnet publish -p:PublishProfile=Osx64.pubxml
|
||||
cd ..
|
||||
- name: Build mac-arm64
|
||||
continue-on-error: false
|
||||
run: |
|
||||
cd HISPd
|
||||
dotnet publish -p:PublishProfile=OsxARM64.pubxml -v diag
|
||||
dotnet publish -p:PublishProfile=OsxARM64.pubxml
|
||||
cd ..
|
||||
- name: Upload mac-x64
|
||||
uses: actions/upload-artifact@v2
|
||||
|
|
|
@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
|||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.7.133.0")]
|
||||
[assembly: AssemblyFileVersion("1.7.133.0")]
|
||||
[assembly: AssemblyVersion("1.7.134.0")]
|
||||
[assembly: AssemblyFileVersion("1.7.134.0")]
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Package: hisp
|
||||
Version: 1.7.133
|
||||
Version: 1.7.134
|
||||
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
||||
Maintainer: Li
|
||||
Homepage: https://islehorse.com
|
||||
|
|
|
@ -272,6 +272,6 @@
|
|||
|
||||
|
||||
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
||||
<Exec Command="csi $(ProjectDir)prebuild.csx" />
|
||||
<Exec Command="dotnet script $(ProjectDir)prebuild.csx" />
|
||||
</Target>
|
||||
</Project>
|
||||
|
|
|
@ -30,8 +30,8 @@ using System.Runtime.InteropServices;
|
|||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
[assembly: AssemblyVersion("1.7.133.0")]
|
||||
[assembly: AssemblyFileVersion("1.7.133.0")]
|
||||
[assembly: AssemblyVersion("1.7.134.0")]
|
||||
[assembly: AssemblyFileVersion("1.7.134.0")]
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -30,8 +30,8 @@ using System.Runtime.InteropServices;
|
|||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
[assembly: AssemblyVersion("1.7.133.0")]
|
||||
[assembly: AssemblyFileVersion("1.7.133.0")]
|
||||
[assembly: AssemblyVersion("1.7.134.0")]
|
||||
[assembly: AssemblyFileVersion("1.7.134.0")]
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue