mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +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: |
|
run: |
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt install -y clang zlib1g-dev dos2unix
|
sudo apt install -y clang zlib1g-dev dos2unix
|
||||||
|
dotnet tool install -g dotnet-script
|
||||||
|
|
||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
run: |
|
run: |
|
||||||
dotnet restore LibHISP
|
dotnet restore LibHISP
|
||||||
|
@ -37,10 +38,10 @@ jobs:
|
||||||
continue-on-error: false
|
continue-on-error: false
|
||||||
run: |
|
run: |
|
||||||
cd HISPd
|
cd HISPd
|
||||||
dotnet publish -p:PublishProfile=Linux64.pubxml -v diag
|
dotnet publish -p:PublishProfile=Linux64.pubxml
|
||||||
cd ..
|
cd ..
|
||||||
cd MPN00BS
|
cd MPN00BS
|
||||||
dotnet publish -p:PublishProfile=Linux64.pubxml -v diag
|
dotnet publish -p:PublishProfile=Linux64.pubxml
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
# Currently broken ...
|
# Currently broken ...
|
||||||
|
@ -61,14 +62,14 @@ jobs:
|
||||||
continue-on-error: false
|
continue-on-error: false
|
||||||
run: |
|
run: |
|
||||||
cd HISPd
|
cd HISPd
|
||||||
dotnet publish -p:PublishProfile=LinuxARM.pubxml -v diag
|
dotnet publish -p:PublishProfile=LinuxARM.pubxml
|
||||||
cd ..
|
cd ..
|
||||||
# nativeaot linux arm64
|
# nativeaot linux arm64
|
||||||
- name: Build linux-arm64
|
- name: Build linux-arm64
|
||||||
continue-on-error: false
|
continue-on-error: false
|
||||||
run: |
|
run: |
|
||||||
cd HISPd
|
cd HISPd
|
||||||
dotnet publish -p:PublishProfile=LinuxARM64.pubxml -v diag
|
dotnet publish -p:PublishProfile=LinuxARM64.pubxml
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
# dotnet add HISPd package Microsoft.DotNet.ILCompiler --prerelease
|
# dotnet add HISPd package Microsoft.DotNet.ILCompiler --prerelease
|
||||||
|
@ -193,6 +194,9 @@ jobs:
|
||||||
dotnet-version: 7.0.x
|
dotnet-version: 7.0.x
|
||||||
include-prerelease: true
|
include-prerelease: true
|
||||||
|
|
||||||
|
- name: Install utils
|
||||||
|
run: dotnet tool install -g dotnet-script
|
||||||
|
|
||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
run: dotnet restore
|
run: dotnet restore
|
||||||
|
|
||||||
|
@ -201,10 +205,10 @@ jobs:
|
||||||
continue-on-error: false
|
continue-on-error: false
|
||||||
run: |
|
run: |
|
||||||
cd HISPd
|
cd HISPd
|
||||||
dotnet publish -p:PublishProfile=Win64.pubxml -v diag
|
dotnet publish -p:PublishProfile=Win64.pubxml
|
||||||
cd ..
|
cd ..
|
||||||
cd MPN00BS
|
cd MPN00BS
|
||||||
dotnet publish -p:PublishProfile=Win64.pubxml -v diag
|
dotnet publish -p:PublishProfile=Win64.pubxml
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
# dotnet add HISPd package Microsoft.DotNet.ILCompiler --prerelease
|
# dotnet add HISPd package Microsoft.DotNet.ILCompiler --prerelease
|
||||||
|
@ -226,23 +230,23 @@ jobs:
|
||||||
continue-on-error: false
|
continue-on-error: false
|
||||||
run: |
|
run: |
|
||||||
cd HISPd
|
cd HISPd
|
||||||
dotnet publish -p:PublishProfile=Win32.pubxml -v diag
|
dotnet publish -p:PublishProfile=Win32.pubxml
|
||||||
cd ..
|
cd ..
|
||||||
cd MPN00BS
|
cd MPN00BS
|
||||||
dotnet publish -p:PublishProfile=Win32.pubxml -v diag
|
dotnet publish -p:PublishProfile=Win32.pubxml
|
||||||
cd ..
|
cd ..
|
||||||
- name: Build win-arm
|
- name: Build win-arm
|
||||||
continue-on-error: false
|
continue-on-error: false
|
||||||
run: |
|
run: |
|
||||||
cd HISPd
|
cd HISPd
|
||||||
dotnet publish -p:PublishProfile=WinARM.pubxml -v diag
|
dotnet publish -p:PublishProfile=WinARM.pubxml
|
||||||
cd ..
|
cd ..
|
||||||
#nativeaot arm64 build
|
#nativeaot arm64 build
|
||||||
- name: Build win-arm64
|
- name: Build win-arm64
|
||||||
continue-on-error: false
|
continue-on-error: false
|
||||||
run: |
|
run: |
|
||||||
cd HISPd
|
cd HISPd
|
||||||
dotnet publish -p:PublishProfile=WinARM64.pubxml -v diag
|
dotnet publish -p:PublishProfile=WinARM64.pubxml
|
||||||
cd ..
|
cd ..
|
||||||
# dotnet add HISPd package Microsoft.DotNet.ILCompiler --prerelease
|
# dotnet add HISPd package Microsoft.DotNet.ILCompiler --prerelease
|
||||||
# dotnet add HISPd package runtime.win-x64.Microsoft.DotNet.ILCompiler --prerelease
|
# dotnet add HISPd package runtime.win-x64.Microsoft.DotNet.ILCompiler --prerelease
|
||||||
|
@ -313,6 +317,9 @@ jobs:
|
||||||
with:
|
with:
|
||||||
dotnet-version: 7.0.x
|
dotnet-version: 7.0.x
|
||||||
include-prerelease: true
|
include-prerelease: true
|
||||||
|
|
||||||
|
- name: Install utils
|
||||||
|
run: dotnet tool install -g dotnet-script
|
||||||
|
|
||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
run: |
|
run: |
|
||||||
|
@ -323,13 +330,13 @@ jobs:
|
||||||
continue-on-error: false
|
continue-on-error: false
|
||||||
run: |
|
run: |
|
||||||
cd HISPd
|
cd HISPd
|
||||||
dotnet publish -p:PublishProfile=Osx64.pubxml -v diag
|
dotnet publish -p:PublishProfile=Osx64.pubxml
|
||||||
cd ..
|
cd ..
|
||||||
- name: Build mac-arm64
|
- name: Build mac-arm64
|
||||||
continue-on-error: false
|
continue-on-error: false
|
||||||
run: |
|
run: |
|
||||||
cd HISPd
|
cd HISPd
|
||||||
dotnet publish -p:PublishProfile=OsxARM64.pubxml -v diag
|
dotnet publish -p:PublishProfile=OsxARM64.pubxml
|
||||||
cd ..
|
cd ..
|
||||||
- name: Upload mac-x64
|
- name: Upload mac-x64
|
||||||
uses: actions/upload-artifact@v2
|
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
|
// 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.133.0")]
|
[assembly: AssemblyVersion("1.7.134.0")]
|
||||||
[assembly: AssemblyFileVersion("1.7.133.0")]
|
[assembly: AssemblyFileVersion("1.7.134.0")]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Package: hisp
|
Package: hisp
|
||||||
Version: 1.7.133
|
Version: 1.7.134
|
||||||
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
|
||||||
|
|
|
@ -272,6 +272,6 @@
|
||||||
|
|
||||||
|
|
||||||
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
||||||
<Exec Command="csi $(ProjectDir)prebuild.csx" />
|
<Exec Command="dotnet script $(ProjectDir)prebuild.csx" />
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -30,8 +30,8 @@ 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.133.0")]
|
[assembly: AssemblyVersion("1.7.134.0")]
|
||||||
[assembly: AssemblyFileVersion("1.7.133.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
|
// 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.133.0")]
|
[assembly: AssemblyVersion("1.7.134.0")]
|
||||||
[assembly: AssemblyFileVersion("1.7.133.0")]
|
[assembly: AssemblyFileVersion("1.7.134.0")]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue