Show More
Commit Description:
Add timers for Simulation and various engines...
Commit Description:
Add timers for Simulation and various engines Starting to add additional timers for different stages of the process of updating in order to get more insight into what is slowing it down. The update takes 9ms, which is much longer than it used to. Engine-specific timers are coming later.
Show/Diff file:
Action:
.gitlab-ci.yml
35 lines | 913 B | text/x-yaml | YamlLexer
# These images don't have Make, so commands are executed directly
stages:
# - validate
- build
# validate:
# stage: validate
# script:
# - dotnet tool install -g dotnet-script
# - dotnet tool run dotnet-script scripts/LoadYaml.csx
# - dotnet tool run dotnet-script scripts/LoadInk.csx
# image: mcr.microsoft.com/dotnet/sdk:3.1
build-debug:
stage: build
script:
- dotnet build isometric-park-fna-core.sln -f netcoreapp3.1
image: mcr.microsoft.com/dotnet/sdk:3.1.415-focal
build-release-windows:
stage: build
script:
- dotnet build isometric-park-fna-core.sln -f netcoreapp3.1 -c Release
image: mcr.microsoft.com/dotnet/sdk:3.1.415
build-release:
stage: build
script:
- dotnet build isometric-park-fna-core.sln -f netcoreapp3.1 -c Release
artifacts:
paths:
- screenshot.xwd
expire_in: 1 week
image: mcr.microsoft.com/dotnet/sdk:3.1.415-focal