forked from RMC-14/RMC-14
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updates submodule & fixes content benchmarks & sets up ci (#11851)
- Loading branch information
1 parent
576443f
commit 4ef3891
Showing
14 changed files
with
146 additions
and
12 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,48 @@ | ||
name: Benchmarks | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 8 * * *' | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
concurrency: benchmarks | ||
|
||
env: | ||
ROBUST_BENCHMARKS_ENABLE_SQL: 1 | ||
ROBUST_BENCHMARKS_SQL_ADDRESS: ${{ secrets.BENCHMARKS_WRITE_ADDRESS }} | ||
ROBUST_BENCHMARKS_SQL_PORT: ${{ secrets.BENCHMARKS_WRITE_PORT }} | ||
ROBUST_BENCHMARKS_SQL_USER: ${{ secrets.BENCHMARKS_WRITE_USER }} | ||
ROBUST_BENCHMARKS_SQL_PASSWORD: ${{ secrets.BENCHMARKS_WRITE_PASSWORD }} | ||
ROBUST_BENCHMARKS_SQL_DATABASE: content_benchmarks | ||
|
||
jobs: | ||
benchmark: | ||
name: Run Benchmarks | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: 'recursive' | ||
- name: Get Engine version | ||
run: | | ||
cd RobustToolbox | ||
git fetch --depth=1 | ||
echo "::set-output name=out::$(git rev-parse HEAD)" | ||
id: engine_version | ||
- name: Run script on centcomm | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: centcomm.spacestation14.io | ||
username: robust-benchmark-runner | ||
key: ${{ secrets.CENTCOMM_ROBUST_BENCHMARK_RUNNER_KEY }} | ||
command_timeout: 100000m | ||
script: | | ||
mkdir benchmark_run_${{ github.sha }} | ||
cd benchmark_run_${{ github.sha }} | ||
wget https://raw.githubusercontent.com/space-wizards/RobustToolbox/${{ steps.engine_version.outputs.out }}/Tools/run_benchmarks.py | ||
python3 run_benchmarks.py "${{ secrets.BENCHMARKS_WRITE_ADDRESS }}" "${{ secrets.BENCHMARKS_WRITE_PORT }}" "${{ secrets.BENCHMARKS_WRITE_USER }}" "${{ secrets.BENCHMARKS_WRITE_PASSWORD }}" "${{ github.sha }}" | ||
rm run_benchmarks.py | ||
cd .. | ||
rmdir benchmark_run_${{ github.sha }} |
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
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,42 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using BenchmarkDotNet.Attributes; | ||
using Content.IntegrationTests; | ||
using Content.Server.Maps; | ||
using Robust.Server.Maps; | ||
using Robust.Shared; | ||
using Robust.Shared.Analyzers; | ||
using Robust.Shared.IoC; | ||
using Robust.Shared.Map; | ||
using Robust.Shared.Prototypes; | ||
|
||
namespace Content.Benchmarks; | ||
|
||
[Virtual] | ||
public class MapLoadBenchmark | ||
{ | ||
private PairTracker _pair = default!; | ||
|
||
[GlobalSetup] | ||
public void Setup() | ||
{ | ||
ProgramShared.PathOffset = "../../../../"; | ||
_pair = PoolManager.GetServerClient().GetAwaiter().GetResult(); | ||
Paths = _pair.Pair.Server.ResolveDependency<IPrototypeManager>() | ||
.EnumeratePrototypes<GameMapPrototype>().ToDictionary(x => x.ID, x => x.MapPath.ToString()); | ||
IoCManager.InitThread(_pair.Pair.Server.InstanceDependencyCollection); | ||
} | ||
|
||
public static IEnumerable<string> MapsSource { get; set; } | ||
|
||
[ParamsSource(nameof(MapsSource))] public string Map; | ||
|
||
public static Dictionary<string, string> Paths; | ||
|
||
[Benchmark] | ||
public void LoadMap() | ||
{ | ||
_pair.Pair.Server.ResolveDependency<IMapLoader>().LoadMap(new MapId(10), Paths[Map]); | ||
} | ||
} |
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 |
---|---|---|
@@ -1,12 +1,38 @@ | ||
using BenchmarkDotNet.Running; | ||
using System; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
using BenchmarkDotNet.Configs; | ||
using BenchmarkDotNet.Running; | ||
using Content.IntegrationTests; | ||
using Content.Server.Maps; | ||
using Robust.Benchmarks.Configs; | ||
using Robust.Shared.Prototypes; | ||
|
||
namespace Content.Benchmarks | ||
{ | ||
internal static class Program | ||
{ | ||
|
||
public static void Main(string[] args) | ||
{ | ||
BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args); | ||
MainAsync(args).GetAwaiter().GetResult(); | ||
} | ||
|
||
public static async Task MainAsync(string[] args) | ||
{ | ||
var pair = await PoolManager.GetServerClient(); | ||
var gameMaps = pair.Pair.Server.ResolveDependency<IPrototypeManager>().EnumeratePrototypes<GameMapPrototype>().ToList(); | ||
MapLoadBenchmark.MapsSource = gameMaps.Select(x => x.ID); | ||
|
||
#if DEBUG | ||
Console.ForegroundColor = ConsoleColor.Red; | ||
Console.WriteLine("\nWARNING: YOU ARE RUNNING A DEBUG BUILD, USE A RELEASE BUILD FOR AN ACCURATE BENCHMARK"); | ||
Console.WriteLine("THE DEBUG BUILD IS ONLY GOOD FOR FIXING A CRASHING BENCHMARK\n"); | ||
BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args, new DebugInProcessConfig()); | ||
#else | ||
var config = Environment.GetEnvironmentVariable("ROBUST_BENCHMARKS_ENABLE_SQL") != null ? DefaultSQLConfig.Instance : null; | ||
BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args, config); | ||
#endif | ||
} | ||
} | ||
} |
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
Submodule RobustToolbox
updated
4 files
+1 −1 | MSBuild/Robust.Engine.Version.props | |
+1 −1 | Robust.Server/server_config.toml | |
+4 −2 | Robust.Shared/ProgramShared.cs | |
+2 −0 | Robust.UnitTesting/RobustIntegrationTest.cs |