-
-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
303 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Benchmark | ||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
permissions: | ||
contents: write | ||
deployments: write | ||
|
||
jobs: | ||
benchmark: | ||
name: Run Benchmark | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Run benchmark | ||
run: cd Benchmark && dotnet run -c Release --exporters json --filter '*' | ||
|
||
- name: Store benchmark results | ||
uses: rhysd/github-action-benchmark@v1 | ||
with: | ||
name: Benchmark.Net Benchmark | ||
tool: 'benchmarkdotnet' | ||
output-file-path: Benchmark/BenchmarkDotNet.Artifacts/results/Eliot.UELib.Benchmark.Benchmarks-report-full-compressed.json | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
auto-push: true | ||
alert-threshold: '200%' | ||
comment-on-alert: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Build .NET Framework and Publish to NuGet | ||
name: Build .NET and Publish | ||
|
||
on: | ||
workflow_dispatch: | ||
|
@@ -8,25 +8,39 @@ on: | |
|
||
jobs: | ||
build: | ||
runs-on: windows-2019 | ||
runs-on: windows-2022 | ||
strategy: | ||
matrix: | ||
dotnet: [ '8.0.x' ] | ||
permissions: | ||
packages: write | ||
contents: read | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup MSBuild | ||
uses: microsoft/setup-msbuild@v2 | ||
|
||
- name: Setup NuGet | ||
uses: NuGet/setup-nuget@v2 | ||
|
||
- name: Restore dependencies | ||
run: nuget restore src/Eliot.UELib.csproj | ||
|
||
|
||
- name: Setup | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: ${{ matrix.dotnet }} | ||
|
||
- name: Install | ||
run: dotnet restore src/Eliot.UELib.csproj | ||
|
||
- name: Build | ||
run: msbuild src/Eliot.UELib.csproj -t:rebuild -property:Configuration=Release | ||
|
||
run: dotnet build src/Eliot.UELib.csproj | ||
|
||
- name: Restore | ||
run: dotnet restore src/Eliot.UELib.csproj | ||
|
||
#- name: Test | ||
# run: dotnet test Test/Eliot.UELib.Test.csproj | ||
|
||
- name: Pack | ||
run: dotnet pack --configuration Release src/Eliot.UELib.csproj | ||
|
||
#- name: Push | ||
# run: dotnet nuget push src/Eliot.UELib.csproj -k ${{ secrets.NUGET_API_KEY }}} -s https://api.nuget.org/v3/index.json | ||
|
||
- name: Publish Eliot.UELib to NuGet | ||
id: nuget | ||
uses: alirezanet/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using System; | ||
using System.IO; | ||
using UELib; | ||
|
||
namespace Eliot.UELib.Test | ||
{ | ||
internal static class UnrealPackageUtilities | ||
{ | ||
// HACK: Ugly workaround the issues with UPackageStream | ||
public static UPackageStream CreateTempPackageStream() | ||
{ | ||
string tempFilePath = Path.Join(Path.GetTempFileName()); | ||
File.WriteAllBytes(tempFilePath, BitConverter.GetBytes(UnrealPackage.Signature)); | ||
|
||
var stream = new UPackageStream(tempFilePath, FileMode.Open, FileAccess.ReadWrite); | ||
return stream; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using UELib.Core; | ||
using UELib.ObjectModel.Annotations; | ||
using UELib.Tokens; | ||
|
||
namespace UELib.Branch.UE3.BL2.Tokens | ||
{ | ||
[ExprToken(ExprToken.InstanceVariable)] | ||
public class BLVariableToken : UStruct.UByteCodeDecompiler.FieldToken | ||
{ | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.