game-ci / unity-test-runner

Run tests for any Unity project
https://github.com/marketplace/actions/unity-test-runner
MIT License
205 stars 131 forks source link

The test runner gets stuck in the "Testing in playmode" phase #188

Open ugnelis opened 2 years ago

ugnelis commented 2 years ago

Bug description

The test runner gets stuck in the "Testing in playmode" phase. I have tried ubuntu-latest and windows-2022 docker images.

CI configuration is almost the same as described in https://game.ci/docs/github/getting-started

name: CI

on:
  workflow_dispatch: { }
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true

jobs:
  test:
    name: Unity Tests Workflow
    runs-on: ubuntu-latest
    timeout-minutes: 60

    strategy:
      matrix:
        unityVersion:
          - 2020.3.19f1

    steps:

      # Checkout (without LFS)
      - name: Checkout Repository
        uses: actions/checkout@v2

      # Git LFS
      - name: Create LFS file list
        run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id

      - name: Restore LFS cache
        uses: actions/cache@v2
        id: lfs-cache
        with:
          path: .git/lfs
          key: ${{ runner.os }}-lfs-${{ hashFiles('.lfs-assets-id') }}

      - name: Git LFS Pull
        run: |
          git lfs pull
          git add .
          git reset --hard

      # Cache
      - uses: actions/cache@v2
        with:
          path: Library
          key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
          restore-keys: |
            Library-

      # Test
      - name: Run Tests
        uses: game-ci/unity-test-runner@v2
        id: tests
        env:
          UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
        with:
          gitPrivateToken: ${{ secrets.GIT_PRIVATE_TOKEN }}
          githubToken: ${{ secrets.GITHUB_TOKEN }}

      # Test Results
      - name: Upload Test Results
        uses: actions/upload-artifact@v2
        if: always()
        with:
          name: Test Restuls
          path: ${{ steps.tests.outputs.artifactsPath }}

Run Tests logs:

Run game-ci/unity-test-runner@v2
/usr/bin/docker run --workdir /github/workspace --rm --env UNITY_LICENSE --env UNITY_LICENSE_FILE --env UNITY_EMAIL --env UNITY_PASSWORD --env UNITY_SERIAL --env UNITY_VERSION=2020.3.19f1 --env PROJECT_PATH=. --env CUSTOM_PARAMETERS= --env TEST_PLATFORMS=playmode;editmode;COMBINE_RESULTS --env COVERAGE_OPTIONS=generateAdditionalMetrics;generateHtmlReport;generateBadgeReport --env COVERAGE_RESULTS_PATH=CodeCoverage --env ARTIFACTS_PATH=artifacts --env GITHUB_REF --env GITHUB_SHA --env GITHUB_REPOSITORY --env GITHUB_ACTOR --env GITHUB_WORKFLOW --env GITHUB_HEAD_REF --env GITHUB_BASE_REF --env GITHUB_EVENT_NAME --env GITHUB_WORKSPACE=/github/workspace --env GITHUB_ACTION --env GITHUB_EVENT_PATH --env RUNNER_OS --env RUNNER_TOOL_CACHE --env RUNNER_TEMP --env RUNNER_WORKSPACE --env GIT_PRIVATE_TOKEN=*** --env CHOWN_FILES_TO= --volume /home/runner/work/_temp/_github_home:/root:z --volume /home/runner/work/_temp/_github_workflow:/github/workflow:z --volume /home/runner/work/bird-game/bird-game:/github/works...
Unable to find image 'unityci/editor:ubuntu-2020.3.19f1-linux-il2cpp-1' locally
ubuntu-2020.3.19f1-linux-il2cpp-1: Pulling from unityci/editor
08a6abff8943: Pulling fs layer
17bc3eeef474: Pulling fs layer
7525af58113d: Pulling fs layer
643424925c07: Pulling fs layer
a64283161285: Pulling fs layer
6f8bb29b92de: Pulling fs layer
f93bd952912f: Pulling fs layer
2f3943063d01: Pulling fs layer
b94b5611506d: Pulling fs layer
13f2bc070dfd: Pulling fs layer
4f4fb700ef54: Pulling fs layer
7d1b8006d6d1: Pulling fs layer
643424925c07: Waiting
a64283161285: Waiting
6f8bb29b92de: Waiting
f93bd952912f: Waiting
2f3943063d01: Waiting
b94b5611506d: Waiting
13f2bc070dfd: Waiting
4f4fb700ef54: Waiting
7d1b8006d6d1: Waiting
17bc3eeef474: Verifying Checksum
17bc3eeef474: Download complete
08a6abff8943: Verifying Checksum
08a6abff8943: Download complete
643424925c07: Verifying Checksum
643424925c07: Download complete
a64283161285: Verifying Checksum
a64283161285: Download complete
6f8bb29b92de: Verifying Checksum
6f8bb29b92de: Download complete
f93bd952912f: Verifying Checksum
f93bd952912f: Download complete
b94b5611506d: Verifying Checksum
b94b5611506d: Download complete
13f2bc070dfd: Verifying Checksum
13f2bc070dfd: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
7525af58113d: Verifying Checksum
7525af58113d: Download complete
08a6abff8943: Pull complete
7d1b8006d6d1: Verifying Checksum
7d1b8006d6d1: Download complete
17bc3eeef474: Pull complete
7525af58113d: Pull complete
643424925c07: Pull complete
a64283161285: Pull complete
6f8bb29b92de: Pull complete
f93bd952912f: Pull complete
2f3943063d01: Verifying Checksum
2f3943063d01: Download complete
2f3943063d01: Pull complete
b94b5611506d: Pull complete
13f2bc070dfd: Pull complete
4f4fb700ef54: Pull complete
7d1b8006d6d1: Pull complete
Digest: sha256:d8e7a364522199122b17c750851d5f1e467015b849695188f49e37944520bd49
Status: Downloaded newer image for unityci/editor:ubuntu-2020.3.19f1-linux-il2cpp-1
Changing to "/github/workspace/_activate-license" directory.
/github/workspace/_activate-license /github/workspace
Requesting activation (personal license)
Activation complete.
/github/workspace
/steps/set_gitcredential.sh: line 1: #!/usr/bin/env: No such file or directory
GIT_PRIVATE_TOKEN is set configuring git credentials
---------- git config --list -------------
filter.lfs.smudge=git-lfs smudge -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
filter.lfs.clean=git-lfs clean -- %f
credential.helper=store
url.https://github.com/.insteadof=ssh://git@github.com/
url.https://github.com/.insteadof=git@github.com
***github.com/.insteadof=https://github.com/
***github.com/.insteadof=ssh://git@github.com/
***github.com/.insteadof=git@github.com:
---------- git config --list --show-origin -------------
file:/etc/gitconfig filter.lfs.smudge=git-lfs smudge -- %f
file:/etc/gitconfig filter.lfs.process=git-lfs filter-process
file:/etc/gitconfig filter.lfs.required=true
file:/etc/gitconfig filter.lfs.clean=git-lfs clean -- %f
file:/root/.gitconfig   credential.helper=store
file:/root/.gitconfig   url.https://github.com/.insteadof=ssh://git@github.com/
file:/root/.gitconfig   url.https://github.com/.insteadof=git@github.com
file:/root/.gitconfig   ***github.com/.insteadof=https://github.com/
file:/root/.gitconfig   ***github.com/.insteadof=ssh://git@github.com/
file:/root/.gitconfig   ***github.com/.insteadof=git@github.com:
Using project path "/github/workspace/.".
Using artifacts path "artifacts" to save test results.
Using coverage results path "CodeCoverage" to save test coverage results.
Using custom parameters .
Using Unity version "2020.3.19f1" to test.
###########################
#    Artifacts folder     #
###########################
Creating "/github/workspace/artifacts" if it does not exist.
###########################
#    Project directory    #
###########################
total 56K
drwxr-xr-x 9 1001  121 4.0K Jul  1 06:15 .
drwxr-xr-x 4 root root 4.0K Jul  1 06:15 ..
-rw-r--r-- 1 1001  121  217 Jul  1 06:12 .editorconfig
drwxr-xr-x 9 1001  121 4.0K Jul  1 06:12 .git
-rw-r--r-- 1 1001  121 1.9K Jul  1 06:12 .gitattributes
drwxr-xr-x 3 1001  121 4.0K Jul  1 06:12 .github
-rw-r--r-- 1 1001  121 1.3K Jul  1 06:12 .gitignore
drwxr-xr-x 6 1001  121 4.0K Jul  1 06:12 Assets
-rw-r--r-- 1 1001  121  766 Jul  1 06:12 CHARK.BirdGame.Client.csproj.DotSettings
-rw-r--r-- 1 1001  121  766 Jul  1 06:12 CHARK.BirdGame.Editor.csproj.DotSettings
drwxr-xr-x 2 1001  121 4.0K Jul  1 06:12 Packages
drwxr-xr-x 2 1001  121 4.0K Jul  1 06:12 ProjectSettings
drwxr-xr-x 2 root root 4.0K Jul  1 06:15 _activate-license
drwxr-xr-x 2 root root 4.0K Jul  1 06:15 artifacts
###########################
#   Testing in playmode  #
###########################

I used secret var ACTIONS_STEP_DEBUG = true for enabling verbose logs.

Where could be the problem?

ugnelis commented 2 years ago

Probably related https://answers.unity.com/questions/1888121/unity-gets-stuck-on-applicationreload-when-enterin.html

spaskhalov commented 1 year ago

I have messed with same behaviour... Test runner just freezing on "Testing in playmode"

Peaj commented 1 year ago

Same problem here. Locally the tests take around 7s to complete. I canceled the test action after around 20min. Is there any way to get more information on whats going on after "Testing in Playmode" is logged?

kcarlson commented 1 year ago

We're getting the same problem with both edit and playmode tests.

Andri-gunawan-susanto commented 1 year ago

Any update with this problem? I've got the same issue after update unity 2020.3.38f1

webbertakken commented 1 year ago

Any update with this problem?

Updates would be posted in this thread. It doesn't look like a complete failure for projects and all versions, since there's only 5 reports here in 2 to 3 months.

What would help is if everyone added their unity versions, and ideally also some stats on memory usage (you could use atop or other measuring tools).

Either way it may be hard to debug the cause here because the Unity Editor isn't giving us much to work with. Perhaps some kind of debug output would also help. Not sure if anyone managed to get more output than nothing at all?

kcarlson commented 1 year ago

We experienced failures using unity 2019.4.40f1 For now a workaround, we are circumventing the test-runner action and executing something like the following, which works:

- name: Run Tests
  id: tests
  env:
    UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
  run: |
    docker run --gpus all --rm \
        --env UNITY_LICENSE \
        --volume="${PWD}:/opt/project" \
        unityci/editor:ubuntu-2019.4.40f1-linux-il2cpp-1 bash -c /opt/project/ci.sh

ci.sh

#!/bin/bash

FILE_PATH=UnityLicenseFile.ulf
echo "$UNITY_LICENSE" | tr -d '\r' >$FILE_PATH
unity-editor \
    -batchmode \
    -nographics \
    -logFile /dev/stdout \
    -quit \
    -manualLicenseFile $FILE_PATH

platforms=(editmode playmode)

COVERAGE_OPTIONS="pathFilters:+/**/Assets/Scripts/**;assemblyFilters:+assets;generateAdditionalMetrics;generateHtmlReport;generateBadgeReport"

for platform in "${platforms[@]}"; do
    unity-editor \
        -runTests \
        -projectPath /opt/project \
        -testResults /opt/project/Logs/${platform}_test_results.xml \
        -logfile /dev/stdout \
        -debugCodeOptimization \
        -enableCodeCoverage \
        -testPlatform $platform \
        -coverageResultsPath /opt/project/CodeCoverage \
        -coverageOptions $COVERAGE_OPTIONS
done
Andri-gunawan-susanto commented 1 year ago

just found solution in my case, just changing uses: game-ci/unity-test-runner@v2 to uses: game-ci/unity-test-runner@v2.0.0 maybe there some run test code in new game-ci version that I can't used in game-ci test runner

kcarlson commented 1 year ago

this solves our issue

ugnelis commented 1 year ago

uses: game-ci/unity-test-runner@v2.0.0

That worked, thanks!

webbertakken commented 1 year ago

Looks like one of the releases caused this. It would be extremely helpful if you could help us find out which one.

Do the versions v2.0.1 and v2.0.2 work for you too?

ugnelis commented 1 year ago

Looks like one of the releases caused this. It would be extremely helpful if you could help us find out which one.

Do the versions v2.0.1 and v2.0.2 work for you too?

I have tested v2.0.1 and v2.0.2. Both of these versions get stuck in the "Testing in playmode" phase

Peaj commented 1 year ago

I am using Unity version 2019.4.28f1.

The project does not have any playmode tests only editmode tests.

test-runner@v2.0.0 it hangs at "Testing in Editmode" test-runner@v2 it hangs at "Testing in Playmode" test-runner@v2.0.1 it hangs at "Testing in Playmode"

test-runner-log.txt

Trying to run the tests on window-latests also failed:

Run game-ci/unity-test-runner@v2
D:\a\_actions\game-ci\unity-test-runner\v2\dist\main.js:1
index.js
^

ReferenceError: index is not defined
    at Object.<anonymous> (D:\a\_actions\game-ci\unity-test-runner\v2\dist\main.js:1:1)
    at Module._compile (node:internal/modules/cjs/loader:1101:14)
    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
    at Module.load (node:internal/modules/cjs/loader:981:32)
    at Function.Module._load (node:internal/modules/cjs/loader:822:12)
    at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:81:12)
    at node:internal/main/run_main_module:17:47

Looks like the simlink is broken?

dev-cmurphy commented 1 year ago

I am using Unity version 2019.4.28f1.

The project does not have any playmode tests only editmode tests.

test-runner@v2.0.0 it hangs at "Testing in Editmode" test-runner@v2 it hangs at "Testing in Playmode" test-runner@v2.0.1 it hangs at "Testing in Playmode"

test-runner-log.txt

Trying to run the tests on window-latests also failed:

Run game-ci/unity-test-runner@v2
D:\a\_actions\game-ci\unity-test-runner\v2\dist\main.js:1
index.js
^

ReferenceError: index is not defined
    at Object.<anonymous> (D:\a\_actions\game-ci\unity-test-runner\v2\dist\main.js:1:1)
    at Module._compile (node:internal/modules/cjs/loader:1101:14)
    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
    at Module.load (node:internal/modules/cjs/loader:981:32)
    at Function.Module._load (node:internal/modules/cjs/loader:822:12)
    at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:81:12)
    at node:internal/main/run_main_module:17:47

Looks like the simlink is broken?

The windows issue is related to this issue it seems.

oferei commented 1 year ago

I also have this problem with play-mode tests. I tried the "2.0.0" solution but it doesn't work for me.

It would also be helpful to flush log messages as they happen instead of dumping them all at the end. Even before this bug the entire bunch of tests log messages would be dumped at one time point--after all the tests were complete--and all having almost the same time stamp.

webbertakken commented 1 year ago

Grouping and flushing output is tracked in https://github.com/game-ci/cli/issues/12

Contributions are welcomed :)

Peaj commented 1 year ago

I just tried running the test on 2021.3.14f1 and instead of getting stuck on "Testing in Playmode" it fails when trying to fetch private git packages. I wonder if that might always be the reason it fails and just does not handle it properly in earlier versions. @ugnelis it seems like you are using private git packages too as there is a "gitPrivateToken" in your config?

oferei commented 1 year ago

I just tried running the test on 2021.3.14f1 and instead of getting stuck on "Testing in Playmode" it fails when trying to fetch private git packages. I wonder if that might always be the reason it fails and just does not handle it properly in earlier versions. @ugnelis it seems like you are using private git packages too as there is a "gitPrivateToken" in your config?

I still have the bug with Unity 2021.3.14f1.

It sounds to me that your fetch failing should not have anything to do with the Unity version.

ugnelis commented 1 year ago

I just tried running the test on 2021.3.14f1 and instead of getting stuck on "Testing in Playmode" it fails when trying to fetch private git packages. I wonder if that might always be the reason it fails and just does not handle it properly in earlier versions. @ugnelis it seems like you are using private git packages too as there is a "gitPrivateToken" in your config?

Probably, you need this step for running test (important line gitPrivateToken):

# Test
- name: Run Tests
  uses: game-ci/unity-test-runner@v2
  id: tests
  env:
    UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
  with:
    gitPrivateToken: ${{ secrets.GIT_PRIVATE_TOKEN }}
    githubToken: ${{ secrets.GITHUB_TOKEN }}

or:

# Build
- uses: game-ci/unity-builder@v2
  env:
    UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
  with:
    gitPrivateToken: ${{ secrets.GIT_PRIVATE_TOKEN }}
    targetPlatform: ${{ matrix.targetPlatform }}
    buildsPath: 'Builds'
    buildName: ${{ needs.setup.outputs.completeName }}

Of course, you need to add Github secret token which has access of private repos (https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token)

ugnelis commented 1 year ago

I just tried running the test on 2021.3.14f1 and instead of getting stuck on "Testing in Playmode" it fails when trying to fetch private git packages. I wonder if that might always be the reason it fails and just does not handle it properly in earlier versions. @ugnelis it seems like you are using private git packages too as there is a "gitPrivateToken" in your config?

I still have the bug with Unity 2021.3.14f1.

It sounds to me that your fetch failing should not have anything to do with the Unity version.

Tested yesterday game-ci/unity-builder@v2 and game-ci/unity-test-runner@v2.0.0, everything works on the Unity version 2020.3.19f1.

Peaj commented 1 year ago

Probably, you need this step for running test (important line gitPrivateToken):

I do have the gitPrivateToken. I am using the same config that works for the builder:

# Test
      - name: Test 🔬
        uses: game-ci/unity-test-runner@v2
        env:
          UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
          UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
          UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}
        with:
          githubToken: ${{ secrets.GITHUB_TOKEN }}
          gitPrivateToken: ${{ secrets.PRIVATE_TOKEN }}
          customParameters: -username='${{ secrets.USERNAME }}' -password='${{ secrets.PASSWORD }}'
ugnelis commented 1 year ago

Probably, you need this step for running test (important line gitPrivateToken):

I do have the gitPrivateToken. I am using the same config that works for the builder:

# Test
      - name: Test 🔬
        uses: game-ci/unity-test-runner@v2
        env:
          UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
          UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
          UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}
        with:
          githubToken: ${{ secrets.GITHUB_TOKEN }}
          gitPrivateToken: ${{ secrets.PRIVATE_TOKEN }}
          customParameters: -username='${{ secrets.USERNAME }}' -password='${{ secrets.PASSWORD }}'

If possible, please send here your log file. Also, be sure that you gave enough access for you generated Github access token

Peaj commented 1 year ago

The log just says: Error when executing git command. remote: Invalid username or password For my 3 git hosted packages. But its the same token and user data that work for the build step.

ugnelis commented 1 year ago

Not sure how you are fetching git projects but in our case, we do through UPM as far as I remember. If you are fetching through git directly, this might be useful https://stackoverflow.com/a/73229045/2122457

Just in case I put my current CI configuration that might be useful:

# See: https://game.ci/docs/github/getting-started
name: CI

on:
  workflow_dispatch: { }
  push:
    branches: [ master ]
  pull_request:
    types: [review_requested, ready_for_review]
    branches: [ master ]

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true

jobs:
  test:
    name: Unity Tests Workflow
    runs-on: ubuntu-latest
    timeout-minutes: 60

    strategy:
      matrix:
        unityVersion:
          - 2020.3.19f1
        testMode:
#          - playmode
          - editmode

    steps:

      # Checkout (without LFS)
      - name: Checkout Repository
        uses: actions/checkout@v2

      # Git LFS
      - name: Create LFS file list
        run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id

      - name: Restore LFS cache
        uses: actions/cache@v2
        id: lfs-cache
        with:
          path: .git/lfs
          key: ${{ runner.os }}-lfs-${{ hashFiles('.lfs-assets-id') }}

      - name: Git LFS Pull
        run: |
          git lfs pull
          git add .
          git reset --hard

      # Cache
      - uses: actions/cache@v2
        with:
          path: Library
          key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
          restore-keys: |
            Library-

      # Test
      - name: Run Tests
        uses: game-ci/unity-test-runner@v2.0.0
        id: tests
        env:
          UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
        with:
          gitPrivateToken: ${{ secrets.GIT_PRIVATE_TOKEN }}
          githubToken: ${{ secrets.GITHUB_TOKEN }}

      # Test Results
      - name: Upload Test Results
        uses: actions/upload-artifact@v2
        if: always()
        with:
          name: Test Restuls
          path: ${{ steps.tests.outputs.artifactsPath }}

If you still experiencing some problems, If I were you, I would try to run Github Actions locally (for example, https://github.com/nektos/act) and try to debug your DevOps scenario on a local machine.

ugnelis commented 1 year ago

I talked with my friend, so in our project, we are not using other private git repos anymore, we have embedded them into Unity project. We have done that as not all team members use Git or have access to all private repos.

In your case, you need to follow game-ci docs on how to set github private repos fetching.

Peaj commented 1 year ago

I talked with my friend, so in our project, we are not using other private git repos anymore, we have embedded them into Unity project. We have done that as not all team members use Git or have access to all private repos.

In your case, you need to follow game-ci docs on how to set github private repos fetching.

Thanks for your help. As mentioned the same settings work for the Build step to get the private packages. Running the actions locally is a good idea. I will try that out. Also to figure out the original issue.

oferei commented 1 year ago

I'd like to return to the error in the OP - the test runner gets stuck. Any info I can add to help with handling this issue?

ugnelis commented 1 year ago

I'd like to return to the error in the OP - the test runner gets stuck. Any info I can add to help with handling this issue?

Have you tried uses: game-ci/unity-test-runner@v2.0.0 (putting v2.0.0 instead of v2)?

oferei commented 1 year ago

Yes. Unfortunately it didn't help in my case. (I wrote this above)

kenorb commented 1 year ago

I've got the same hang with game-ci/unity-test-runner@v2. See: https://github.com/game-ci/unity-actions/issues/168 I was able to reproduce it on the empty project with a public repository right after cache was restored. And I'm using Linux runner.

Build: https://github.com/Ecilos/ecilos-unity-assets-sandbox/actions/runs/4288532708/jobs/7470635266#step:4:141

Workflow file: https://github.com/Ecilos/ecilos-unity-assets-sandbox/actions/runs/4288532708/workflow

ugnelis commented 1 year ago

@kenorb try:

      - name: Set up Unity
        uses: game-ci/unity-test-runner@v2.0.0 # <--
        env:
          UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
        with:
          projectPath: .
          githubToken: ${{ secrets.GITHUB_TOKEN }}
kenorb commented 1 year ago
      - name: Set up Unity
        uses: game-ci/unity-test-runner@v2.0.0 # <--

Thanks. Seems like it worked using v2.0.0 as per build 7529977372. I'm going to check for other repositories to make sure. Update: 2nd repo with more asset files worked fine as well (before it didn't).

Since v2.0.0 is older, do you know what's the (known) issue with the newer version?

ugnelis commented 1 year ago

No problem. I am not sure what is wrong. The maintainer should answer this question. FIY, I have tested v2.0.0, v2.0.1, and v2.0.2 but only v2.0.0 works as intended

sjdharme commented 1 year ago

I am also facing this issue with playmode tests. I am using unity version 2020.3.37f1. I tried using v2.0.0 but it still gets stuck in the "Testing in playmode" phase.

davidmfinol commented 1 year ago

Any chance your tests involve a coroutine that has yield return null; in it? I've seen that cause it to hang sometimes.

sjdharme commented 1 year ago

Yes, there are multiple coroutines which has yield return null; in it. Since I am new to the unity world, I don't know what will come in place of yeild return null;. I tried adding -nographics and -quit as a customParameters and the build passed successfully BUT it did not run any tests. ✅ PlayMode Test Results - 0/0 - Passed in 0.000s

asyasmi commented 1 year ago

Hey, Suddenly started to get this

###########################
#   Testing in editmode  #
###########################

again, tested v2, v2.0.0, v2.0.1, till v2.1.1 but with no luck :( I use 2020.3.36f1, 2021.3.21f1, 2022.2.12f1.

Somehow fixed it the last time, but here it happens again.

ugnelis commented 1 year ago

@asyasmi what output do you get?

ugnelis commented 1 year ago

To this day I am using v2.0.0 works like a charm.

Some advice from experience using this action:

asyasmi commented 1 year ago

@ugnelis Yeah, I'm also using game-ci for a while and I'm super happy with it.

@asyasmi what output do you get?

Creating "/github/workspace/ubuntu-latest_2021.3.21f1_StandaloneLinux64_artifacts" if it does not exist.

###########################
#    Project directory    #
###########################

total 56K
drwxr-xr-x 11 1001  123 4.0K May 19 10:54 .
drwxr-xr-x  4 root root 4.0K May 19 10:54 ..
drwxr-xr-x  2 1001  123 4.0K May 19 10:52 .ci
drwxr-xr-x  8 1001  123 4.0K May 19 10:52 .git
-rw-r--r--  1 1001  123  210 May 19 10:52 .gitattributes
drwxr-xr-x  3 1001  123 4.0K May 19 10:52 .github
-rw-r--r--  1 1001  123 1.2K May 19 10:52 .gitignore
drwxr-xr-x  4 1001  123 4.0K May 19 10:52 Assets
drwxr-xr-x  2 1001  123 4.0K May 19 10:52 Packages
drwxr-xr-x  2 1001  123 4.0K May 19 10:52 ProjectSettings
-rw-r--r--  1 1001  123   51 May 19 10:52 README.md
drwxr-xr-x  2 root root 4.0K May 19 10:54 _activate-license
drwxr-xr-x  2 root root 4.0K May 19 10:54 ubuntu-latest_2021.3.21f1_StandaloneLinux64_artifacts

###########################
#   Testing in editmode  #
###########################

that's all before the cancellation of the job :(

Regarding timeout-minutes - we had no timeout at all, it still never for out of this state. But I think this time I got it.

UPD: Eventually that were our tests. The issue was with tests, one of them eventually was broken and just hung a process and logs were not shown before they were done and tests were never done, so... The job ended in this limbo.

So I'd really be waiting for https://github.com/game-ci/cli/issues/12 to be realized.

timcassell commented 1 year ago

I'm not sure if the progress logs get printed to the Unity log, but I do this in my tests to see what test caused a hang (works in my Core tests).

public static class TestHelper
{
    private static Stopwatch _stopwatch;

    public static void Setup()
    {
        if (_stopwatch == null)
        {
            // Other global setup
            _stopwatch = Stopwatch.StartNew();
        }
        // Other per-test setup
        TestContext.Progress.WriteLine("Begin time: " + _stopwatch.Elapsed.ToString() + ", test: " + TestContext.CurrentContext.Test.FullName);
    }

    public static void Cleanup()
    {
        // Other per-test cleanup
        TestContext.Progress.WriteLine("Success time: " + _stopwatch.Elapsed.ToString() + ", test: " + TestContext.CurrentContext.Test.FullName);
    }
}

Then in all of my test classes, I put this:

[SetUp]
public void Setup()
{
    TestHelper.Setup();
}

[TearDown]
public void Teardown()
{
    TestHelper.Cleanup();
}
asyasmi commented 1 year ago

Thanks, @timcassell ! I'll think of implementing something similar on our side.

markus-seidl commented 11 months ago

I guess this could be interesting: https://docs.unity3d.com/2022.3/Documentation/Manual/CLIBatchmodeCoroutines.html TLDR: Not all Coroutines are supported in batch mode, most notably: WaitForEndOfFrame . Which might be part of this issue for some.

MhouneyLH commented 2 months ago

Edit: I tried using the unityVersion 2022.3.15f1 and it worked! Sadly, I don't really know, why it is not working for the unityVersion 2023.2.9f1.

I still have this error. :(

I just added a simple empty test like that:

using NUnit.Framework;

public class SampleEditorTest
{
    [Test]
    public void SampleEditorTestSimplePasses()
    {
        Assert.Pass();
    }
}

the code:

name: Testing

on:
  workflow_dispatch:
  pull_request:
  push:

jobs:
  test:
    name: Testing in ${{ matrix.testMode }}
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        testMode:
          - editmode
    steps:
      - name: Checkout code
        uses: actions/checkout@v4
        with:
          lfs: true

      - name: Try caching Library folder for faster builds
        uses: actions/cache@v3
        with:
          path: ${{ matrix.projectPath }}/Library
          key: Library-${{ matrix.projectPath }}
          restore-keys: |
            Library-

      - name: Setup GameCI-Environment for testing and test
        uses: game-ci/unity-test-runner@v4
        id: testStep
        env:
          UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
          UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
          UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
        with:
          unityVersion: 2023.2.9f1
          testMode: ${{ matrix.testMode }}

Log:

2024-05-18T19:02:13.8306883Z Current runner version: '2.316.1'
2024-05-18T19:02:13.8333786Z ##[group]Operating System
2024-05-18T19:02:13.8335073Z Ubuntu
2024-05-18T19:02:13.8335923Z 22.04.4
2024-05-18T19:02:13.8336739Z LTS
2024-05-18T19:02:13.8337543Z ##[endgroup]
2024-05-18T19:02:13.8338380Z ##[group]Runner Image
2024-05-18T19:02:13.8339324Z Image: ubuntu-22.04
2024-05-18T19:02:13.8340234Z Version: 20240516.1.0
2024-05-18T19:02:13.8341967Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20240516.1/images/ubuntu/Ubuntu2204-Readme.md
2024-05-18T19:02:13.8344096Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20240516.1
2024-05-18T19:02:13.8345525Z ##[endgroup]
2024-05-18T19:02:13.8346437Z ##[group]Runner Image Provisioner
2024-05-18T19:02:13.8347333Z 2.0.369.1
2024-05-18T19:02:13.8348147Z ##[endgroup]
2024-05-18T19:02:13.8350058Z ##[group]GITHUB_TOKEN Permissions
2024-05-18T19:02:13.8352196Z Contents: read
2024-05-18T19:02:13.8353066Z Metadata: read
2024-05-18T19:02:13.8354292Z Packages: read
2024-05-18T19:02:13.8355325Z ##[endgroup]
2024-05-18T19:02:13.8359019Z Secret source: Actions
2024-05-18T19:02:13.8360074Z Prepare workflow directory
2024-05-18T19:02:13.8998590Z Prepare all required actions
2024-05-18T19:02:13.9156309Z Getting action download info
2024-05-18T19:02:14.0837128Z Download action repository 'actions/checkout@v4' (SHA:0ad4b8fadaa221de15dcec353f45205ec38ea70b)
2024-05-18T19:02:14.1941464Z Download action repository 'actions/cache@v3' (SHA:e12d46a63a90f2fae62d114769bbf2a179198b5c)
2024-05-18T19:02:14.3146508Z Download action repository 'game-ci/unity-test-runner@v4' (SHA:5817131b76378ee08ad4cde3067af92d7c66f864)
2024-05-18T19:02:14.9485845Z Complete job name: Testing in editmode
2024-05-18T19:02:15.0525806Z ##[group]Run actions/checkout@v4
2024-05-18T19:02:15.0527004Z with:
2024-05-18T19:02:15.0527891Z   lfs: true
2024-05-18T19:02:15.0528895Z   repository: EduSim-Engineering-GbR/FeuerSim
2024-05-18T19:02:15.0530286Z   token: ***
2024-05-18T19:02:15.0531216Z   ssh-strict: true
2024-05-18T19:02:15.0532330Z   ssh-user: git
2024-05-18T19:02:15.0533506Z   persist-credentials: true
2024-05-18T19:02:15.0534541Z   clean: true
2024-05-18T19:02:15.0535491Z   sparse-checkout-cone-mode: true
2024-05-18T19:02:15.0536560Z   fetch-depth: 1
2024-05-18T19:02:15.0537447Z   fetch-tags: false
2024-05-18T19:02:15.0538343Z   show-progress: true
2024-05-18T19:02:15.0539266Z   submodules: false
2024-05-18T19:02:15.0540146Z   set-safe-directory: true
2024-05-18T19:02:15.0541127Z ##[endgroup]
2024-05-18T19:02:15.2314031Z Syncing repository: EduSim-Engineering-GbR/FeuerSim
2024-05-18T19:02:15.2318483Z ##[group]Getting Git version info
2024-05-18T19:02:15.2320950Z Working directory is '/home/runner/work/FeuerSim/FeuerSim'
2024-05-18T19:02:15.2324280Z [command]/usr/bin/git version
2024-05-18T19:02:15.2386976Z git version 2.45.1
2024-05-18T19:02:15.2430919Z [command]/usr/bin/git lfs version
2024-05-18T19:02:15.3022916Z git-lfs/3.5.1 (GitHub; linux amd64; go 1.21.8)
2024-05-18T19:02:15.3040513Z ##[endgroup]
2024-05-18T19:02:15.3087791Z Temporarily overriding HOME='/home/runner/work/_temp/f97affb6-e82a-4b2b-b28e-0fa7ceb986cc' before making global git config changes
2024-05-18T19:02:15.3091146Z Adding repository directory to the temporary git global config as a safe directory
2024-05-18T19:02:15.3094914Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/FeuerSim/FeuerSim
2024-05-18T19:02:15.3128204Z Deleting the contents of '/home/runner/work/FeuerSim/FeuerSim'
2024-05-18T19:02:15.3151283Z ##[group]Initializing the repository
2024-05-18T19:02:15.3153465Z [command]/usr/bin/git init /home/runner/work/FeuerSim/FeuerSim
2024-05-18T19:02:15.3263760Z hint: Using 'master' as the name for the initial branch. This default branch name
2024-05-18T19:02:15.3266101Z hint: is subject to change. To configure the initial branch name to use in all
2024-05-18T19:02:15.3268569Z hint: of your new repositories, which will suppress this warning, call:
2024-05-18T19:02:15.3270247Z hint:
2024-05-18T19:02:15.3272489Z hint:  git config --global init.defaultBranch <name>
2024-05-18T19:02:15.3274057Z hint:
2024-05-18T19:02:15.3276070Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2024-05-18T19:02:15.3278089Z hint: 'development'. The just-created branch can be renamed via this command:
2024-05-18T19:02:15.3280160Z hint:
2024-05-18T19:02:15.3281528Z hint:  git branch -m <name>
2024-05-18T19:02:15.3286579Z Initialized empty Git repository in /home/runner/work/FeuerSim/FeuerSim/.git/
2024-05-18T19:02:15.3300283Z [command]/usr/bin/git remote add origin https://github.com/EduSim-Engineering-GbR/FeuerSim
2024-05-18T19:02:15.3340387Z ##[endgroup]
2024-05-18T19:02:15.3343388Z ##[group]Disabling automatic garbage collection
2024-05-18T19:02:15.3346286Z [command]/usr/bin/git config --local gc.auto 0
2024-05-18T19:02:15.3376554Z ##[endgroup]
2024-05-18T19:02:15.3379594Z ##[group]Setting up auth
2024-05-18T19:02:15.3382784Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2024-05-18T19:02:15.3417376Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2024-05-18T19:02:15.3687624Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2024-05-18T19:02:15.3723957Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2024-05-18T19:02:15.3984062Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2024-05-18T19:02:15.4096797Z ##[endgroup]
2024-05-18T19:02:15.4099041Z [command]/usr/bin/git lfs install --local
2024-05-18T19:02:15.4697379Z Updated Git hooks.
2024-05-18T19:02:15.4711331Z Git LFS initialized.
2024-05-18T19:02:15.4727568Z ##[group]Fetching the repository
2024-05-18T19:02:15.4732163Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d369b5014f67345d9549f231fd0acea905a773e4:refs/remotes/origin/feat/cicd
2024-05-18T19:02:20.3351922Z From https://github.com/EduSim-Engineering-GbR/FeuerSim
2024-05-18T19:02:20.3362136Z  * [new ref]         d369b5014f67345d9549f231fd0acea905a773e4 -> origin/feat/cicd
2024-05-18T19:02:20.3406754Z ##[endgroup]
2024-05-18T19:02:20.3409503Z ##[group]Determining the checkout info
2024-05-18T19:02:20.3412239Z ##[endgroup]
2024-05-18T19:02:20.3414954Z ##[group]Fetching LFS objects
2024-05-18T19:02:20.3437642Z [command]/usr/bin/git lfs fetch origin refs/remotes/origin/feat/cicd
2024-05-18T19:02:20.3943660Z fetch: Fetching reference refs/remotes/origin/feat/cicd
2024-05-18T19:02:20.5316965Z ##[endgroup]
2024-05-18T19:02:20.5319251Z [command]/usr/bin/git sparse-checkout disable
2024-05-18T19:02:20.5367834Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig
2024-05-18T19:02:20.5397747Z ##[group]Checking out the ref
2024-05-18T19:02:20.5400322Z [command]/usr/bin/git checkout --progress --force -B feat/cicd refs/remotes/origin/feat/cicd
2024-05-18T19:02:21.5751975Z Updating files:  84% (1748/2069)
2024-05-18T19:02:21.5777578Z Updating files:  85% (1759/2069)
2024-05-18T19:02:21.7416639Z Updating files:  86% (1780/2069)
2024-05-18T19:02:21.7434775Z Updating files:  87% (1801/2069)
2024-05-18T19:02:21.7451297Z Updating files:  88% (1821/2069)
2024-05-18T19:02:21.7461429Z Updating files:  89% (1842/2069)
2024-05-18T19:02:21.7471075Z Updating files:  90% (1863/2069)
2024-05-18T19:02:21.7479464Z Updating files:  91% (1883/2069)
2024-05-18T19:02:21.7487759Z Updating files:  92% (1904/2069)
2024-05-18T19:02:21.7497078Z Updating files:  93% (1925/2069)
2024-05-18T19:02:21.7506600Z Updating files:  94% (1945/2069)
2024-05-18T19:02:21.7516214Z Updating files:  95% (1966/2069)
2024-05-18T19:02:21.7524833Z Updating files:  96% (1987/2069)
2024-05-18T19:02:21.7637584Z Updating files:  97% (2007/2069)
2024-05-18T19:02:21.7645505Z Updating files:  98% (2028/2069)
2024-05-18T19:02:21.7659088Z Updating files:  99% (2049/2069)
2024-05-18T19:02:21.7660575Z Updating files: 100% (2069/2069)
2024-05-18T19:02:21.7661957Z Updating files: 100% (2069/2069), done.
2024-05-18T19:02:21.7694682Z Switched to a new branch 'feat/cicd'
2024-05-18T19:02:21.7700549Z branch 'feat/cicd' set up to track 'origin/feat/cicd'.
2024-05-18T19:02:21.8255466Z ##[endgroup]
2024-05-18T19:02:21.8294185Z [command]/usr/bin/git log -1 --format='%H'
2024-05-18T19:02:21.8319639Z 'd369b5014f67345d9549f231fd0acea905a773e4'
2024-05-18T19:02:21.8996020Z ##[group]Run actions/cache@v3
2024-05-18T19:02:21.8996964Z with:
2024-05-18T19:02:21.8997743Z   path: /Library
2024-05-18T19:02:21.8998549Z   key: Library-
2024-05-18T19:02:21.8999294Z   restore-keys: Library-

2024-05-18T19:02:21.9000194Z   enableCrossOsArchive: false
2024-05-18T19:02:21.9001104Z   fail-on-cache-miss: false
2024-05-18T19:02:21.9001963Z   lookup-only: false
2024-05-18T19:02:21.9002785Z ##[endgroup]
2024-05-18T19:02:22.2057750Z Cache not found for input keys: Library-, Library-
2024-05-18T19:02:22.2289667Z ##[group]Run game-ci/unity-test-runner@v4
2024-05-18T19:02:22.2290650Z with:
2024-05-18T19:02:22.2291429Z   unityVersion: 2023.2.9f1
2024-05-18T19:02:22.2292293Z   testMode: editmode
2024-05-18T19:02:22.2293743Z   coverageOptions: generateAdditionalMetrics;generateHtmlReport;generateBadgeReport;dontClear
2024-05-18T19:02:22.2295467Z   artifactsPath: artifacts
2024-05-18T19:02:22.2296317Z   useHostNetwork: false
2024-05-18T19:02:22.2297179Z   checkName: Test Results
2024-05-18T19:02:22.2298043Z   packageMode: false
2024-05-18T19:02:22.2298892Z   dockerIsolationMode: default
2024-05-18T19:02:22.2299828Z   containerRegistryRepository: unityci/editor
2024-05-18T19:02:22.2300812Z   containerRegistryImageVersion: 3
2024-05-18T19:02:22.2301721Z   runAsHostUser: false
2024-05-18T19:02:22.2302453Z env:
2024-05-18T19:02:22.2313912Z   UNITY_LICENSE: ***
2024-05-18T19:02:22.2314893Z   UNITY_EMAIL: ***
2024-05-18T19:02:22.2315862Z   UNITY_PASSWORD: ***
2024-05-18T19:02:22.2316789Z ##[endgroup]
2024-05-18T19:02:22.3262987Z [command]/usr/bin/docker run --workdir /github/workspace --cidfile /home/runner/work/_temp/container_testStep --rm --env UNITY_EMAIL=*** --env UNITY_PASSWORD=*** --env UNITY_SERIAL=*** --env UNITY_VERSION=2023.2.9f1 --env PROJECT_PATH=. --env COVERAGE_OPTIONS=generateAdditionalMetrics;generateHtmlReport;generateBadgeReport;dontClear --env COVERAGE_RESULTS_PATH=CodeCoverage --env ARTIFACTS_PATH=artifacts --env PACKAGE_MODE=false --env REGISTRY_SCOPES= --env RUN_AS_HOST_USER=false --env GITHUB_REF=refs/heads/feat/cicd --env GITHUB_SHA=d369b5014f67345d9549f231fd0acea905a773e4 --env GITHUB_REPOSITORY=EduSim-Engineering-GbR/FeuerSim --env GITHUB_ACTOR=MhouneyLH --env GITHUB_WORKFLOW=Testing --env GITHUB_EVENT_NAME=push --env GITHUB_ACTION=testStep --env GITHUB_EVENT_PATH=/home/runner/work/_temp/_github_workflow/event.json --env RUNNER_OS=Linux --env RUNNER_TOOL_CACHE=/opt/hostedtoolcache --env RUNNER_TEMP=/home/runner/work/_temp --env RUNNER_WORKSPACE=/home/runner/work/FeuerSim --env GIT_CONFIG_EXTENSIONS --env TEST_PLATFORMS=editmode --env GITHUB_WORKSPACE=/github/workspace --volume /home/runner/work/_temp/_github_home:/root:z --volume /home/runner/work/_temp/_github_workflow:/github/workflow:z --volume /home/runner/work/FeuerSim/FeuerSim:/github/workspace:z --volume /home/runner/work/_actions/game-ci/unity-test-runner/v4/dist/test-standalone-scripts:/UnityStandaloneScripts:z --volume /home/runner/work/_actions/game-ci/unity-test-runner/v4/dist/platforms/ubuntu:/steps:z --volume /home/runner/work/_actions/game-ci/unity-test-runner/v4/dist/unity-config:/usr/share/unity3d/config/:z --volume /home/runner/work/_actions/game-ci/unity-test-runner/v4/dist/BlankProject:/BlankProject:z --cpus=2 --memory=7533m --env USE_EXIT_CODE=true unityci/editor:ubuntu-2023.2.9f1-linux-il2cpp-3 /bin/bash -c /steps/entrypoint.sh
2024-05-18T19:02:22.3755658Z Unable to find image 'unityci/editor:ubuntu-2023.2.9f1-linux-il2cpp-3' locally
2024-05-18T19:02:22.9359976Z ubuntu-2023.2.9f1-linux-il2cpp-3: Pulling from unityci/editor
2024-05-18T19:02:23.0743751Z a8b1c5f80c2d: Already exists
2024-05-18T19:02:23.0770556Z 83bdd94ef519: Pulling fs layer
2024-05-18T19:02:23.0772586Z 5dfc0b2f5307: Pulling fs layer
2024-05-18T19:02:23.0774565Z e2aa3fba4583: Pulling fs layer
2024-05-18T19:02:23.0776102Z 4f4fb700ef54: Pulling fs layer
2024-05-18T19:02:23.0777622Z 2f9fd13926a8: Pulling fs layer
2024-05-18T19:02:23.0779081Z d865489637aa: Pulling fs layer
2024-05-18T19:02:23.0780457Z 64c81bb25877: Pulling fs layer
2024-05-18T19:02:23.0781656Z 8b728edeb107: Pulling fs layer
2024-05-18T19:02:23.0782882Z c4116a53c17d: Pulling fs layer
2024-05-18T19:02:23.0784417Z d62505070877: Pulling fs layer
2024-05-18T19:02:23.0785600Z ceb5f1d0579c: Pulling fs layer
2024-05-18T19:02:23.0786932Z 2f9fd13926a8: Waiting
2024-05-18T19:02:23.0791744Z d865489637aa: Waiting
2024-05-18T19:02:23.0792855Z 64c81bb25877: Waiting
2024-05-18T19:02:23.0793703Z 8b728edeb107: Waiting
2024-05-18T19:02:23.0794541Z c4116a53c17d: Waiting
2024-05-18T19:02:23.0795621Z d62505070877: Waiting
2024-05-18T19:02:23.0796480Z ceb5f1d0579c: Waiting
2024-05-18T19:02:23.0797267Z 4f4fb700ef54: Waiting
2024-05-18T19:02:23.2438409Z 83bdd94ef519: Verifying Checksum
2024-05-18T19:02:23.2440488Z 83bdd94ef519: Download complete
2024-05-18T19:02:23.4552369Z 4f4fb700ef54: Verifying Checksum
2024-05-18T19:02:23.4563044Z 4f4fb700ef54: Download complete
2024-05-18T19:02:23.5941599Z e2aa3fba4583: Verifying Checksum
2024-05-18T19:02:23.5952574Z e2aa3fba4583: Download complete
2024-05-18T19:02:23.6581519Z 2f9fd13926a8: Verifying Checksum
2024-05-18T19:02:23.6583923Z 2f9fd13926a8: Download complete
2024-05-18T19:02:23.8014295Z d865489637aa: Verifying Checksum
2024-05-18T19:02:23.8016370Z d865489637aa: Download complete
2024-05-18T19:02:23.8085727Z 64c81bb25877: Verifying Checksum
2024-05-18T19:02:23.8087603Z 64c81bb25877: Download complete
2024-05-18T19:02:24.0134360Z c4116a53c17d: Verifying Checksum
2024-05-18T19:02:24.0136001Z c4116a53c17d: Download complete
2024-05-18T19:02:24.1993606Z d62505070877: Verifying Checksum
2024-05-18T19:02:24.1995234Z d62505070877: Download complete
2024-05-18T19:02:24.3139022Z 5dfc0b2f5307: Verifying Checksum
2024-05-18T19:02:24.3142844Z 5dfc0b2f5307: Download complete
2024-05-18T19:02:24.8438987Z 83bdd94ef519: Pull complete
2024-05-18T19:02:26.1036285Z ceb5f1d0579c: Download complete
2024-05-18T19:02:36.5442576Z 5dfc0b2f5307: Pull complete
2024-05-18T19:02:39.7573526Z e2aa3fba4583: Pull complete
2024-05-18T19:02:40.1181231Z 4f4fb700ef54: Pull complete
2024-05-18T19:02:40.3129162Z 2f9fd13926a8: Pull complete
2024-05-18T19:02:40.3556948Z d865489637aa: Pull complete
2024-05-18T19:02:40.3743370Z 64c81bb25877: Pull complete
2024-05-18T19:02:56.1989904Z 8b728edeb107: Verifying Checksum
2024-05-18T19:02:56.1991300Z 8b728edeb107: Download complete
2024-05-18T19:04:25.1780332Z 8b728edeb107: Pull complete
2024-05-18T19:04:25.1936842Z c4116a53c17d: Pull complete
2024-05-18T19:04:25.2099042Z d62505070877: Pull complete
2024-05-18T19:04:29.6109595Z ceb5f1d0579c: Pull complete
2024-05-18T19:04:31.7380684Z Digest: sha256:0e5e5594efb76e755a99b89ca5356663175ba15b002c8167e48e2ee19c0e2f05
2024-05-18T19:04:31.7390219Z Status: Downloaded newer image for unityci/editor:ubuntu-2023.2.9f1-linux-il2cpp-3
2024-05-18T19:04:31.9952865Z Randomizing machine ID for personal license activation
2024-05-18T19:04:32.0117395Z Running as root
2024-05-18T19:04:32.0130316Z GIT_CONFIG_EXTENSIONS unset skipping
2024-05-18T19:04:32.0132557Z ---------- git config --list -------------
2024-05-18T19:04:32.0228500Z filter.lfs.clean=git-lfs clean -- %f
2024-05-18T19:04:32.0230656Z filter.lfs.smudge=git-lfs smudge -- %f
2024-05-18T19:04:32.0232501Z filter.lfs.process=git-lfs filter-process
2024-05-18T19:04:32.0233996Z filter.lfs.required=true
2024-05-18T19:04:32.0241057Z ---------- git config --list --show-origin -------------
2024-05-18T19:04:32.0252212Z file:/etc/gitconfig    filter.lfs.clean=git-lfs clean -- %f
2024-05-18T19:04:32.0255735Z file:/etc/gitconfig    filter.lfs.smudge=git-lfs smudge -- %f
2024-05-18T19:04:32.0257738Z file:/etc/gitconfig    filter.lfs.process=git-lfs filter-process
2024-05-18T19:04:32.0259509Z file:/etc/gitconfig    filter.lfs.required=true
2024-05-18T19:04:32.0314077Z /steps/set_gitcredential.sh: line 1: #!/usr/bin/env: No such file or directory
2024-05-18T19:04:32.0329516Z GIT_PRIVATE_TOKEN unset skipping
2024-05-18T19:04:32.0331157Z ---------- git config --list -------------
2024-05-18T19:04:32.0332800Z filter.lfs.clean=git-lfs clean -- %f
2024-05-18T19:04:32.0334911Z filter.lfs.smudge=git-lfs smudge -- %f
2024-05-18T19:04:32.0336720Z filter.lfs.process=git-lfs filter-process
2024-05-18T19:04:32.0342499Z filter.lfs.required=true
2024-05-18T19:04:32.0345935Z ---------- git config --list --show-origin -------------
2024-05-18T19:04:32.0363101Z file:/etc/gitconfig    filter.lfs.clean=git-lfs clean -- %f
2024-05-18T19:04:32.0365851Z file:/etc/gitconfig    filter.lfs.smudge=git-lfs smudge -- %f
2024-05-18T19:04:32.0368540Z file:/etc/gitconfig    filter.lfs.process=git-lfs filter-process
2024-05-18T19:04:32.0371374Z file:/etc/gitconfig    filter.lfs.required=true
2024-05-18T19:04:32.0373946Z Requesting activation
2024-05-18T19:04:32.3843712Z Unity Editor version:    2023.2.9f1 (0c9c2e1f4bef)
2024-05-18T19:04:32.3845351Z Branch:                  2023.2/staging
2024-05-18T19:04:32.3846935Z Build type:              Release
2024-05-18T19:04:32.3848085Z Batch mode:              YES
2024-05-18T19:04:32.3849045Z System name:             Linux
2024-05-18T19:04:32.3850411Z Distro version:          #22~22.04.1-Ubuntu SMP Tue Apr 30 16:08:18 UTC 2024
2024-05-18T19:04:32.3851725Z Kernel version:          6.5.0-1021-azure
2024-05-18T19:04:32.3852846Z Architecture:            x86_64
2024-05-18T19:04:32.3854328Z Available memory:        7929 MB
2024-05-18T19:04:32.3855581Z CreateDirectory '/root/.cache/unity3d' failed:  (current dir: /github/workspace)
2024-05-18T19:04:33.0882975Z User *** logged in successfully
2024-05-18T19:04:33.0895053Z [UnityConnect::TryLogin] Request Succeeded.
2024-05-18T19:04:33.0896494Z [Licensing::Module] Trying to connect to existing licensing client channel...
2024-05-18T19:04:33.0935919Z [Licensing::IpcConnector] Connection attempt to the License Client on channel: "LicenseClient-root" failed because channel doesn't exist; code: "0x80000002"
2024-05-18T19:04:33.0952050Z [Licensing::Module] Successfully launched the LicensingClient (PId: 35)
2024-05-18T19:04:33.9619520Z [Licensing::IpcConnector] Successfully connected to the License Client on channel: "LicenseClient-root" at "2024-05-18T19:04:33.96106Z"
2024-05-18T19:04:33.9622711Z [SignatureVerifier] Application signature verification not supported on this platform.
2024-05-18T19:04:34.0960900Z [Licensing::Client] Handshaking with LicensingClient:
2024-05-18T19:04:34.0962890Z   Version:                 1.13.1+ca5f299
2024-05-18T19:04:34.0964650Z   Session Id:              e979f70235e74d34bb14883556c10744
2024-05-18T19:04:34.0966554Z   Correlation Id:          69d67d3d016c22852ae5c9934c0174a8
2024-05-18T19:04:34.0968344Z   External correlation Id: 4457115565943958424
2024-05-18T19:04:34.0970140Z   Machine Id:              wEdCp9fwy8E9rDr2TLLINv0qn40=
2024-05-18T19:04:34.0973121Z [Licensing::Module] Successfully connected to LicensingClient on channel: "LicenseClient-root" (connect: 0.87s, validation: 0.13s, handshake: 0.00s)
2024-05-18T19:04:34.0977831Z [Licensing::IpcConnector] Successfully connected to the License Notification on channel: "LicenseClient-root-notifications" at "2024-05-18T19:04:34.095558Z"
2024-05-18T19:04:34.0980911Z [Licensing::Module] Connected to LicensingClient (PId: 35, launch time: 0.00, total connection time: 1.00s)
2024-05-18T19:04:34.1205513Z [Licensing::Client] Successfully updated the access token
2024-05-18T19:04:34.1207808Z [Licensing::Module] Successfully updated the access token _eQAeM-8qh...
2024-05-18T19:04:35.4570879Z [Licensing::Client] Successfully processed license management request
2024-05-18T19:04:35.4572966Z [Licensing::Module] Successfully activated the entitlement license
2024-05-18T19:04:35.4719697Z [Licensing::Client] Successfully queried for the EntitlementGroupsDetails
2024-05-18T19:04:37.4820595Z [Licensing::Client] Successfully activated ULF license
2024-05-18T19:04:37.4823369Z [Licensing::Module] Serial number assigned to (masked): "***"
2024-05-18T19:04:37.4984613Z [Licensing::Client] Successfully resolved entitlements
2024-05-18T19:04:37.4987042Z [Licensing::Module] Serial number assigned to: "***"
2024-05-18T19:04:37.4988488Z Pro License: NO
2024-05-18T19:04:37.7154263Z Desktop is 1280 x 1024 @ 60 Hz
2024-05-18T19:04:37.7155969Z Initialize udev device monitor.
2024-05-18T19:04:37.7189908Z 
2024-05-18T19:04:37.7190583Z COMMAND LINE ARGUMENTS:
2024-05-18T19:04:37.7191950Z /opt/unity/Editor/Unity
2024-05-18T19:04:37.7193436Z -batchmode
2024-05-18T19:04:37.7194627Z -logFile
2024-05-18T19:04:37.7195802Z /dev/stdout
2024-05-18T19:04:37.7197021Z -quit
2024-05-18T19:04:37.7198183Z -serial
2024-05-18T19:04:37.7199443Z (hidden)
2024-05-18T19:04:37.7200918Z -username
2024-05-18T19:04:37.7202516Z ***
2024-05-18T19:04:37.7204236Z -password
2024-05-18T19:04:37.7205599Z (hidden)
2024-05-18T19:04:37.7207075Z -projectPath
2024-05-18T19:04:37.7208433Z /BlankProject
2024-05-18T19:04:37.7210003Z Successfully changed project path to: /BlankProject
2024-05-18T19:04:37.7217326Z 
2024-05-18T19:04:37.7218776Z (Unity:29): Gtk-CRITICAL **: 19:04:37.721: gtk_label_set_markup: assertion 'GTK_IS_LABEL (label)' failed
2024-05-18T19:04:37.7227619Z 
2024-05-18T19:04:37.7228982Z (Unity:29): Gtk-CRITICAL **: 19:04:37.722: gtk_label_set_markup: assertion 'GTK_IS_LABEL (label)' failed
2024-05-18T19:04:37.7232267Z /BlankProject
2024-05-18T19:04:37.7256981Z [UnityMemory] Configuration Parameters - Can be set up in boot.config
2024-05-18T19:04:37.7266888Z     "memorysetup-bucket-allocator-granularity=16"
2024-05-18T19:04:37.7271213Z     "memorysetup-bucket-allocator-bucket-count=8"
2024-05-18T19:04:37.7274755Z     "memorysetup-bucket-allocator-block-size=33554432"
2024-05-18T19:04:37.7278095Z     "memorysetup-bucket-allocator-block-count=8"
2024-05-18T19:04:37.7281581Z     "memorysetup-main-allocator-block-size=16777216"
2024-05-18T19:04:37.7295734Z     "memorysetup-thread-allocator-block-size=16777216"
2024-05-18T19:04:37.7299938Z     "memorysetup-gfx-main-allocator-block-size=16777216"
2024-05-18T19:04:37.7303646Z     "memorysetup-gfx-thread-allocator-block-size=16777216"
2024-05-18T19:04:37.7306918Z     "memorysetup-cache-allocator-block-size=4194304"
2024-05-18T19:04:37.7311041Z     "memorysetup-typetree-allocator-block-size=2097152"
2024-05-18T19:04:37.7313027Z     "memorysetup-profiler-bucket-allocator-granularity=16"
2024-05-18T19:04:37.7340298Z     "memorysetup-profiler-bucket-allocator-bucket-count=8"
2024-05-18T19:04:37.7342951Z     "memorysetup-profiler-bucket-allocator-block-size=33554432"
2024-05-18T19:04:37.7352911Z     "memorysetup-profiler-bucket-allocator-block-count=8"
2024-05-18T19:04:37.7364759Z     "memorysetup-profiler-allocator-block-size=16777216"
2024-05-18T19:04:37.7368164Z     "memorysetup-profiler-editor-allocator-block-size=1048576"
2024-05-18T19:04:37.7370016Z     "memorysetup-temp-allocator-size-main=16777216"
2024-05-18T19:04:37.7377687Z     "memorysetup-job-temp-allocator-block-size=2097152"
2024-05-18T19:04:37.7379841Z     "memorysetup-job-temp-allocator-block-size-background=1048576"
2024-05-18T19:04:37.7382024Z     "memorysetup-job-temp-allocator-reduction-small-platforms=262144"
2024-05-18T19:04:37.7384144Z     "memorysetup-allocator-temp-initial-block-size-main=262144"
2024-05-18T19:04:37.7386211Z     "memorysetup-allocator-temp-initial-block-size-worker=262144"
2024-05-18T19:04:37.7388213Z     "memorysetup-temp-allocator-size-background-worker=32768"
2024-05-18T19:04:37.7390105Z     "memorysetup-temp-allocator-size-job-worker=262144"
2024-05-18T19:04:37.7391939Z     "memorysetup-temp-allocator-size-preload-manager=33554432"
2024-05-18T19:04:37.7393975Z     "memorysetup-temp-allocator-size-nav-mesh-worker=65536"
2024-05-18T19:04:37.7395860Z     "memorysetup-temp-allocator-size-audio-worker=65536"
2024-05-18T19:04:37.7398055Z     "memorysetup-temp-allocator-size-cloud-worker=32768"
2024-05-18T19:04:37.7399972Z     "memorysetup-temp-allocator-size-gi-baking-worker=262144"
2024-05-18T19:04:37.7401952Z     "memorysetup-temp-allocator-size-gi-baking-worker=262144"
2024-05-18T19:04:37.7403874Z     "memorysetup-temp-allocator-size-gi-baking-worker=262144"
2024-05-18T19:04:37.7405846Z     "memorysetup-temp-allocator-size-gi-baking-worker=262144"
2024-05-18T19:04:37.7407649Z     "memorysetup-temp-allocator-size-gfx=262144"
2024-05-18T19:04:37.7411225Z Player connection [140618996495616] Host "[IP] 172.17.0.2 [Port] 55504 [Flags] 2 [Guid] 1551691657 [EditorId] 1551691657 [Version] 1048832 [Id] LinuxEditor(16,172.17.0.2) [Debug] 1 [PackageName] LinuxEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
2024-05-18T19:04:37.7441967Z Player connection [140618996495616] Host "[IP] 172.17.0.2 [Port] 55504 [Flags] 2 [Guid] 1551691657 [EditorId] 1551691657 [Version] 1048832 [Id] LinuxEditor(16,172.17.0.2) [Debug] 1 [PackageName] LinuxEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
2024-05-18T19:04:37.8712880Z [Physics::Module] Initialized MultithreadedJobDispatcher with 1 workers.
2024-05-18T19:04:38.2089911Z [Package Manager] Connected to IPC stream "Upm-29" after 0.3 seconds.
2024-05-18T19:04:38.2092157Z Library Redirect Path: Library/
2024-05-18T19:04:38.2110877Z Rebuilding Library because the asset database could not be found!
2024-05-18T19:04:38.2286638Z [Licensing::Client] Successfully resolved entitlements
2024-05-18T19:04:38.2706937Z Packages were changed.
2024-05-18T19:04:38.2708497Z Update Mode: updateDependencies
2024-05-18T19:04:38.2709305Z 
2024-05-18T19:04:38.2710000Z The following packages were added:
2024-05-18T19:04:38.2711105Z   com.unity.ai.navigation@2.0.0
2024-05-18T19:04:38.2712077Z   com.unity.modules.accessibility@1.0.0
2024-05-18T19:04:39.6528818Z [Package Manager] Done resolving packages in 1.37 seconds
2024-05-18T19:04:39.6704231Z [Licensing::Client] Successfully resolved entitlement details
2024-05-18T19:04:39.6706131Z [Package Manager] Lock file was modified
2024-05-18T19:04:39.6715585Z [Package Manager] Registered 3 packages:
2024-05-18T19:04:39.6717349Z   Packages from [https://packages.unity.com]:
2024-05-18T19:04:39.6719419Z     com.unity.ai.navigation@2.0.0 (location: /BlankProject/Library/PackageCache/com.unity.ai.navigation@2.0.0)
2024-05-18T19:04:39.6721784Z   Built-in packages:
2024-05-18T19:04:39.6724047Z     com.unity.modules.accessibility@1.0.0 (location: /BlankProject/Library/PackageCache/com.unity.modules.accessibility@1.0.0)
2024-05-18T19:04:39.6726469Z     com.unity.modules.ai@1.0.0 (location: /BlankProject/Library/PackageCache/com.unity.modules.ai@1.0.0)
2024-05-18T19:04:39.6916141Z PlayerPrefs - Creating folder: /root/.config/unity3d/DefaultCompany
2024-05-18T19:04:39.6921701Z PlayerPrefs - Creating folder: /root/.config/unity3d/DefaultCompany/BlankProject
2024-05-18T19:04:39.6926062Z Unable to load player prefs
2024-05-18T19:04:39.7087614Z [Subsystems] No new subsystems found in resolved package list.
2024-05-18T19:04:39.7091506Z Package Manager log level set to [2]
2024-05-18T19:04:39.7094784Z [Package Manager] Done registering packages in 0.04 seconds
2024-05-18T19:04:39.7563283Z Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins.
2024-05-18T19:04:39.7577891Z Preloading 0 native plugins for Editor in 0.00 ms.
2024-05-18T19:04:39.7579568Z Initialize engine version: 2023.2.9f1 (0c9c2e1f4bef)
2024-05-18T19:04:39.7581324Z [Subsystems] Discovering subsystems at path /opt/unity/Editor/Data/Resources/UnitySubsystems
2024-05-18T19:04:39.7582742Z [Subsystems] Discovering subsystems at path /BlankProject/Assets
2024-05-18T19:04:39.7584857Z kGfxThreadingModeNonThreaded is not supported on OpenGL Core. Reverting to kGfxThreadingModeDirect instead.
2024-05-18T19:04:39.7587119Z GfxDevice: creating device client; kGfxThreadingModeDirect
2024-05-18T19:04:39.7738776Z GLX Extensions: GLX_ARB_context_flush_control GLX_ARB_create_context GLX_ARB_create_context_no_error GLX_ARB_create_context_profile GLX_ARB_fbconfig_float GLX_ARB_framebuffer_sRGB GLX_ARB_get_proc_address GLX_ARB_multisample GLX_EXT_create_context_es2_profile GLX_EXT_create_context_es_profile GLX_EXT_fbconfig_packed_float GLX_EXT_framebuffer_sRGB GLX_EXT_no_config_context GLX_EXT_texture_from_pixmap GLX_EXT_visual_info GLX_EXT_visual_rating GLX_MESA_copy_sub_buffer GLX_MESA_query_renderer GLX_OML_swap_method GLX_SGIS_multisample GLX_SGIX_fbconfig GLX_SGIX_pbuffer GLX_SGIX_visual_select_group GLX_SGI_make_current_read 
2024-05-18T19:04:39.7804668Z Renderer: llvmpipe (LLVM 15.0.7, 256 bits)
2024-05-18T19:04:39.7806232Z Vendor:   Mesa
2024-05-18T19:04:39.7807975Z Version:  4.5 (Core Profile) Mesa 23.2.1-1ubuntu3.1~22.04.2
2024-05-18T19:04:39.7809340Z GLES:     0
2024-05-18T19:04:39.7818166Z  GL_3DFX_texture_compression_FXT1 GL_AMD_conservative_depth GL_AMD_draw_buffers_blend GL_AMD_gpu_shader_int64 GL_AMD_multi_draw_indirect GL_AMD_pinned_memory GL_AMD_query_buffer_object GL_AMD_seamless_cubemap_per_texture GL_AMD_shader_stencil_export GL_AMD_shader_trinary_minmax GL_AMD_texture_texture4 GL_AMD_vertex_shader_layer GL_AMD_vertex_shader_viewport_index GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_ARB_ES2_compatibility GL_ARB_ES3_1_compatibility GL_ARB_ES3_2_compatibility GL_ARB_ES3_compatibility GL_ARB_arrays_of_arrays GL_ARB_base_instance GL_ARB_blend_func_extended GL_ARB_buffer_storage GL_ARB_clear_buffer_object GL_ARB_clear_texture GL_ARB_clip_control GL_ARB_compressed_texture_pixel_storage GL_ARB_compute_shader GL_ARB_conditional_render_inverted GL_ARB_conservative_depth GL_ARB_copy_buffer GL_ARB_copy_image GL_ARB_cull_distance GL_ARB_debug_output GL_ARB_depth_buffer_float GL_ARB_depth_clamp GL_ARB_derivative_control GL_ARB_direct_state_access GL_ARB_draw_buffers GL_A
2024-05-18T19:04:39.7836509Z RB_draw_buffers_blend GL_ARB_draw_elements_base_vertex GL_ARB_draw_indirect GL_ARB_draw_instanced GL_ARB_enhanced_layouts GL_ARB_explicit_attrib_location GL_ARB_explicit_uniform_location GL_ARB_fragment_coord_conventions GL_ARB_fragment_layer_viewport GL_ARB_fragment_shader GL_ARB_framebuffer_no_attachments GL_ARB_framebuffer_object GL_ARB_framebuffer_sRGB GL_ARB_get_program_binary GL_ARB_get_texture_sub_image GL_ARB_gl_spirv GL_ARB_gpu_shader5 GL_ARB_gpu_shader_fp64 GL_ARB_gpu_shader_int64 GL_ARB_half_float_pixel GL_ARB_half_float_vertex GL_ARB_indirect_parameters GL_ARB_instanced_arrays GL_ARB_internalformat_query GL_ARB_internalformat_query2 GL_ARB_invalidate_subdata GL_ARB_map_buffer_alignment GL_ARB_map_buffer_range GL_ARB_multi_bind GL_ARB_multi_draw_indirect GL_ARB_occlusion_query2 GL_ARB_parallel_shader_compile GL_ARB_pipeline_statistics_query GL_ARB_pixel_buffer_object GL_ARB_point_sprite GL_ARB_polygon_offset_clamp GL_ARB_post_depth_coverage GL_ARB_program_interface_query GL_ARB_provoking_vertex GL
2024-05-18T19:04:39.7851433Z _ARB_query_buffer_object GL_ARB_robust_buffer_access_behavior GL_ARB_robustness GL_ARB_sample_shading GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_seamless_cubemap_per_texture GL_ARB_separate_shader_objects GL_ARB_shader_atomic_counter_ops GL_ARB_shader_atomic_counters GL_ARB_shader_ballot GL_ARB_shader_bit_encoding GL_ARB_shader_clock GL_ARB_shader_draw_parameters GL_ARB_shader_group_vote GL_ARB_shader_image_load_store GL_ARB_shader_image_size GL_ARB_shader_objects GL_ARB_shader_precision GL_ARB_shader_stencil_export GL_ARB_shader_storage_buffer_object GL_ARB_shader_subroutine GL_ARB_shader_texture_image_samples GL_ARB_shader_texture_lod GL_ARB_shader_viewport_layer_array GL_ARB_shading_language_420pack GL_ARB_shading_language_include GL_ARB_shading_language_packing GL_ARB_spirv_extensions GL_ARB_stencil_texturing GL_ARB_sync GL_ARB_tessellation_shader GL_ARB_texture_barrier GL_ARB_texture_buffer_object GL_ARB_texture_buffer_object_rgb32 GL_ARB_texture_buffer_range GL_ARB_texture_compression_bptc 
2024-05-18T19:04:39.7866364Z GL_ARB_texture_compression_rgtc GL_ARB_texture_cube_map_array GL_ARB_texture_filter_anisotropic GL_ARB_texture_filter_minmax GL_ARB_texture_float GL_ARB_texture_gather GL_ARB_texture_mirror_clamp_to_edge GL_ARB_texture_multisample GL_ARB_texture_non_power_of_two GL_ARB_texture_query_levels GL_ARB_texture_query_lod GL_ARB_texture_rectangle GL_ARB_texture_rg GL_ARB_texture_rgb10_a2ui GL_ARB_texture_stencil8 GL_ARB_texture_storage GL_ARB_texture_storage_multisample GL_ARB_texture_swizzle GL_ARB_texture_view GL_ARB_timer_query GL_ARB_transform_feedback2 GL_ARB_transform_feedback3 GL_ARB_transform_feedback_instanced GL_ARB_transform_feedback_overflow_query GL_ARB_uniform_buffer_object GL_ARB_vertex_array_bgra GL_ARB_vertex_array_object GL_ARB_vertex_attrib_64bit GL_ARB_vertex_attrib_binding GL_ARB_vertex_buffer_object GL_ARB_vertex_shader GL_ARB_vertex_type_10f_11f_11f_rev GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_viewport_array GL_ARM_shader_framebuffer_fetch_depth_stencil GL_ATI_blend_equation_separate GL_ATI_me
2024-05-18T19:04:39.7883506Z minfo GL_ATI_texture_float GL_ATI_texture_mirror_once GL_EXT_EGL_image_storage GL_EXT_EGL_sync GL_EXT_abgr GL_EXT_blend_equation_separate GL_EXT_debug_label GL_EXT_draw_buffers2 GL_EXT_draw_instanced GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_framebuffer_multisample_blit_scaled GL_EXT_framebuffer_object GL_EXT_framebuffer_sRGB GL_EXT_memory_object GL_EXT_memory_object_fd GL_EXT_packed_depth_stencil GL_EXT_packed_float GL_EXT_pixel_buffer_object GL_EXT_polygon_offset_clamp GL_EXT_provoking_vertex GL_EXT_shader_framebuffer_fetch GL_EXT_shader_framebuffer_fetch_non_coherent GL_EXT_shader_integer_mix GL_EXT_texture_array GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_compression_s3tc GL_EXT_texture_filter_anisotropic GL_EXT_texture_filter_minmax GL_EXT_texture_integer GL_EXT_texture_mirror_clamp GL_EXT_texture_sRGB GL_EXT_texture_sRGB_R8 GL_EXT_texture_sRGB_RG8 GL_EXT_texture_sRGB_decode GL_EXT_texture_shadow_lod GL_EXT_texture_shared_exponent GL_EXT_texture_sno
2024-05-18T19:04:39.7899438Z rm GL_EXT_texture_swizzle GL_EXT_timer_query GL_EXT_transform_feedback GL_EXT_vertex_array_bgra GL_EXT_vertex_attrib_64bit GL_IBM_multimode_draw_arrays GL_INTEL_shader_atomic_float_minmax GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent GL_KHR_context_flush_control GL_KHR_debug GL_KHR_no_error GL_KHR_parallel_shader_compile GL_KHR_robust_buffer_access_behavior GL_KHR_robustness GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_sliced_3d GL_MESA_framebuffer_flip_y GL_MESA_pack_invert GL_MESA_shader_integer_functions GL_MESA_texture_signed_rgba GL_MESA_ycbcr_texture GL_NVX_gpu_memory_info GL_NV_conditional_render GL_NV_copy_image GL_NV_depth_clamp GL_NV_packed_depth_stencil GL_NV_shader_atomic_float GL_NV_texture_barrier GL_OES_EGL_image GL_S3_s3tc
2024-05-18T19:04:39.7907709Z OPENGL LOG: Creating OpenGL 4.5 graphics device ; Context level  <OpenGL 4.5> ; Context handle -932870832
2024-05-18T19:04:39.8156905Z [Licensing::Client] Successfully resolved entitlements
2024-05-18T19:04:39.8436977Z Initialize mono
2024-05-18T19:04:39.8440293Z Mono path[0] = '/opt/unity/Editor/Data/Managed'
2024-05-18T19:04:39.8442695Z Mono path[1] = '/opt/unity/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-linux'
2024-05-18T19:04:39.8445120Z Mono config path = '/opt/unity/Editor/Data/MonoBleedingEdge/etc'
2024-05-18T19:04:39.8447786Z Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56029
2024-05-18T19:04:39.9061401Z Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts
2024-05-18T19:04:39.9064163Z Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts
2024-05-18T19:04:39.9066256Z ImportWorker Server TCP listen port: 0
2024-05-18T19:04:39.9068166Z AcceleratorClientConnectionCallback - disconnected - :0
2024-05-18T19:04:39.9165282Z Begin MonoManager ReloadAssembly
2024-05-18T19:04:39.9959416Z icall.c:1842:
2024-05-18T19:04:40.0439970Z icall.c:1842:
2024-05-18T19:04:40.0981139Z icall.c:1842:
2024-05-18T19:04:40.0982085Z icall.c:1842:
2024-05-18T19:04:40.0982980Z icall.c:1842:
2024-05-18T19:04:40.0983851Z icall.c:1842:
2024-05-18T19:04:40.0984710Z icall.c:1842:
2024-05-18T19:04:40.0985589Z icall.c:1842:
2024-05-18T19:04:40.0986439Z icall.c:1842:
2024-05-18T19:04:40.1117419Z icall.c:1842:
2024-05-18T19:04:40.1720120Z Registering precompiled unity dll's ...
2024-05-18T19:04:40.1755310Z Register platform support module: /opt/unity/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll
2024-05-18T19:04:40.1769936Z Registered in 0.005267 seconds.
2024-05-18T19:04:40.4633059Z - Loaded All Assemblies, in  0.546 seconds
2024-05-18T19:04:40.5195118Z Native extension for LinuxStandalone target not found
2024-05-18T19:05:30.4188054Z [Licensing::Client] Successfully resolved entitlement details
2024-05-18T19:05:30.9557240Z Mono: successfully reloaded assembly
2024-05-18T19:05:30.9563804Z icall.c:1842:
2024-05-18T19:05:30.9564845Z icall.c:1842:
2024-05-18T19:05:31.0124021Z - Finished resetting the current domain, in 50.548 seconds
2024-05-18T19:05:31.0168184Z Domain Reload Profiling: 51098ms
2024-05-18T19:05:31.0169317Z    BeginReloadAssembly (127ms)
2024-05-18T19:05:31.0170322Z        ExecutionOrderSort (0ms)
2024-05-18T19:05:31.0171342Z        DisableScriptedObjects (0ms)
2024-05-18T19:05:31.0172317Z        BackupInstance (0ms)
2024-05-18T19:05:31.0173505Z        ReleaseScriptingObjects (0ms)
2024-05-18T19:05:31.0175323Z        CreateAndSetChildDomain (1ms)
2024-05-18T19:05:31.0176282Z    RebuildCommonClasses (82ms)
2024-05-18T19:05:31.0177276Z    RebuildNativeTypeToScriptingClass (15ms)
2024-05-18T19:05:31.0178362Z    initialDomainReloadingComplete (83ms)
2024-05-18T19:05:31.0179431Z    LoadAllAssembliesAndSetupDomain (240ms)
2024-05-18T19:05:31.0180428Z        LoadAssemblies (125ms)
2024-05-18T19:05:31.0181419Z        RebuildTransferFunctionScriptingTraits (0ms)
2024-05-18T19:05:31.0182591Z        AnalyzeDomain (236ms)
2024-05-18T19:05:31.0183449Z            TypeCache.Refresh (234ms)
2024-05-18T19:05:31.0184389Z                TypeCache.ScanAssembly (213ms)
2024-05-18T19:05:31.0185345Z            BuildScriptInfoCaches (0ms)
2024-05-18T19:05:31.0186288Z            ResolveRequiredComponents (1ms)
2024-05-18T19:05:31.0187284Z    FinalizeReload (50552ms)
2024-05-18T19:05:31.0188158Z        ReleaseScriptCaches (0ms)
2024-05-18T19:05:31.0189043Z        RebuildScriptCaches (0ms)
2024-05-18T19:05:31.0189975Z        SetupLoadedEditorAssemblies (50446ms)
2024-05-18T19:05:31.0190952Z            LogAssemblyErrors (0ms)
2024-05-18T19:05:31.0201594Z            InitializePlatformSupportModulesInManaged (49911ms)
2024-05-18T19:05:31.0202820Z            SetLoadedEditorAssemblies (10ms)
2024-05-18T19:05:31.0203861Z            BeforeProcessingInitializeOnLoad (17ms)
2024-05-18T19:05:31.0205006Z            ProcessInitializeOnLoadAttributes (434ms)
2024-05-18T19:05:31.0206184Z            ProcessInitializeOnLoadMethodAttributes (73ms)
2024-05-18T19:05:31.0207344Z            AfterProcessingInitializeOnLoad (0ms)
2024-05-18T19:05:31.0208349Z            EditorAssembliesLoaded (0ms)
2024-05-18T19:05:31.0209256Z        ExecutionOrderSort2 (0ms)
2024-05-18T19:05:31.0210253Z        AwakeInstancesAfterBackupRestoration (0ms)
2024-05-18T19:05:31.0361826Z [Licensing::Client] Successfully resolved entitlements
2024-05-18T19:05:31.0462630Z Application.AssetDatabase Initial Refresh Start
2024-05-18T19:05:31.3515253Z [Package Manager] Done resolving packages in 0.30 seconds
2024-05-18T19:05:31.3632723Z [Licensing::Client] Successfully resolved entitlement details
2024-05-18T19:05:31.3652816Z [Package Manager] Registered 6 packages:
2024-05-18T19:05:31.3654713Z   Packages from [https://packages.unity.com]:
2024-05-18T19:05:31.3656692Z     com.unity.ai.navigation@2.0.0 (location: /BlankProject/Library/PackageCache/com.unity.ai.navigation@2.0.0)
2024-05-18T19:05:31.3659751Z     com.unity.toolchain.linux-x86_64@2.0.9 (location: /BlankProject/Library/PackageCache/com.unity.toolchain.linux-x86_64@2.0.9)
2024-05-18T19:05:31.3662316Z     com.unity.sysroot@2.0.10 (location: /BlankProject/Library/PackageCache/com.unity.sysroot@2.0.10)
2024-05-18T19:05:31.3665069Z     com.unity.sysroot.linux-x86_64@2.0.9 (location: /BlankProject/Library/PackageCache/com.unity.sysroot.linux-x86_64@2.0.9)
2024-05-18T19:05:31.3667384Z   Built-in packages:
2024-05-18T19:05:31.3669198Z     com.unity.modules.accessibility@1.0.0 (location: /BlankProject/Library/PackageCache/com.unity.modules.accessibility@1.0.0)
2024-05-18T19:05:31.3671714Z     com.unity.modules.ai@1.0.0 (location: /BlankProject/Library/PackageCache/com.unity.modules.ai@1.0.0)
2024-05-18T19:05:31.3679936Z [Subsystems] No new subsystems found in resolved package list.
2024-05-18T19:05:31.3686724Z [Package Manager] Done registering packages in 0.00 seconds
2024-05-18T19:05:31.4941861Z [ScriptCompilation] Requested script compilation because: Assembly Definition File(s) changed
2024-05-18T19:05:31.4951784Z [ScriptCompilation] Requested script compilation because: Assetdatabase observed changes in script compilation related files
2024-05-18T19:05:32.7144854Z info: Microsoft.Hosting.Lifetime[14]
2024-05-18T19:05:32.7190702Z       Now listening on: http://unix:/tmp/ilpp.sock-6c2c88d26de89964a3589845e9f6b753
2024-05-18T19:05:32.7271575Z info: Microsoft.Hosting.Lifetime[0]
2024-05-18T19:05:32.7272991Z       Application started. Press Ctrl+C to shut down.
2024-05-18T19:05:32.7286371Z info: Microsoft.Hosting.Lifetime[0]
2024-05-18T19:05:32.7287717Z       Hosting environment: Production
2024-05-18T19:05:32.7289073Z info: Microsoft.Hosting.Lifetime[0]
2024-05-18T19:05:32.7290341Z       Content root path: /BlankProject/
2024-05-18T19:05:32.8038411Z info: Microsoft.AspNetCore.Hosting.Diagnostics[1]
2024-05-18T19:05:32.8040487Z       Request starting HTTP/2 POST http://ilpp/UnityILPP.PostProcessing/Ping application/grpc -
2024-05-18T19:05:32.8348923Z info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
2024-05-18T19:05:32.8350606Z       Executing endpoint 'gRPC - /UnityILPP.PostProcessing/Ping'
2024-05-18T19:05:32.8875734Z info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
2024-05-18T19:05:32.8877438Z       Executed endpoint 'gRPC - /UnityILPP.PostProcessing/Ping'
2024-05-18T19:05:32.9015648Z info: Microsoft.AspNetCore.Hosting.Diagnostics[2]
2024-05-18T19:05:32.9017905Z       Request finished HTTP/2 POST http://ilpp/UnityILPP.PostProcessing/Ping application/grpc - - 200 - application/grpc 91.9748ms
2024-05-18T19:05:33.1002233Z Starting: /opt/unity/Editor/Data/bee_backend --dont-print-to-structured-log --ipc --defer-dag-verification --dagfile="Library/Bee/2400b0aE.dag" --continue-on-failure --profile="Library/Bee/backend1.traceevents" ScriptAssemblies
2024-05-18T19:05:33.1007091Z WorkingDir: /BlankProject
2024-05-18T19:05:33.1626108Z ExitCode: 4 Duration: 0s62ms
2024-05-18T19:05:33.1670763Z [             ] Require frontend run.  Library/Bee/2400b0aE.dag couldn't be loaded
2024-05-18T19:05:33.2488319Z DisplayProgressbar: Compiling Scripts
2024-05-18T19:05:33.2772950Z Starting: /opt/unity/Editor/Data/Tools/netcorerun/netcorerun "/opt/unity/Editor/Data/Tools/BuildPipeline/ScriptCompilationBuildProgram.exe" "Library/Bee/2400b0aE.dag.json" "Library/Bee/2400b0aE-inputdata.json" "Library/Bee/buildprogram0.traceevents"
2024-05-18T19:05:33.2776139Z WorkingDir: /BlankProject
2024-05-18T19:05:33.7779011Z ExitCode: 0 Duration: 0s495ms
2024-05-18T19:05:33.7782602Z Starting: /opt/unity/Editor/Data/bee_backend --dont-print-to-structured-log --ipc --defer-dag-verification --dagfile="Library/Bee/2400b0aE.dag" --continue-on-failure --dagfilejson="Library/Bee/2400b0aE.dag.json" --profile="Library/Bee/backend2.traceevents" ScriptAssemblies
2024-05-18T19:05:33.7785602Z WorkingDir: /BlankProject
2024-05-18T19:05:48.2396828Z ExitCode: 0 Duration: 14s
2024-05-18T19:05:48.2405263Z Finished compiling graph: 178 nodes, 1193 flattened edges (1139 ToBuild, 14 ToUse), maximum node priority 41
2024-05-18T19:05:48.2407508Z [  1/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_127A5E08784DFE18.mvfrm
2024-05-18T19:05:48.2410453Z [  2/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_027D9A8E71A0B15C.mvfrm
2024-05-18T19:05:48.2412764Z [  3/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_66BA57C44726C737.mvfrm
2024-05-18T19:05:48.2415286Z [  4/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_DF29A9ECF72EE21A.mvfrm
2024-05-18T19:05:48.2417532Z [  5/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_50605C929FBEA55D.mvfrm
2024-05-18T19:05:48.2419740Z [  6/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_2D0B70DBEB11A36B.mvfrm
2024-05-18T19:05:48.2421972Z [  7/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_A919558AB24CA4B9.mvfrm
2024-05-18T19:05:48.2424162Z [  8/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_036834ABEE364E96.mvfrm
2024-05-18T19:05:48.2426550Z [  9/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.XRModule.dll_F9BD1E5E04788228.mvfrm
2024-05-18T19:05:48.2428808Z [ 10/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_3F27F61626C2B29A.mvfrm
2024-05-18T19:05:48.2431203Z [ 11/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_55742236ED683584.mvfrm
2024-05-18T19:05:48.2433575Z [ 12/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_9BE94D4A5BE3A5B9.mvfrm
2024-05-18T19:05:48.2435946Z [ 13/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_688731F780324B05.mvfrm
2024-05-18T19:05:48.2438393Z [ 14/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_16DC6483FB4CD29E.mvfrm
2024-05-18T19:05:48.2440687Z [ 15/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_CEE81073C04AE00C.mvfrm
2024-05-18T19:05:48.2442955Z [ 16/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_F5FD375CD5BF4CA0.mvfrm
2024-05-18T19:05:48.2445144Z [ 17/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_B7272835E8B9DD71.mvfrm
2024-05-18T19:05:48.2447161Z [ 18/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.dll_26E1301FA7D2E848.mvfrm
2024-05-18T19:05:48.2449384Z [ 19/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_0D8BEBC55DE47C66.mvfrm
2024-05-18T19:05:48.2451817Z [ 20/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_7EAB10D1C690A2C9.mvfrm
2024-05-18T19:05:48.2454426Z [ 21/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_A612074443ECC5DF.mvfrm
2024-05-18T19:05:48.2456561Z [ 22/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_4F6371438468C58B.mvfrm
2024-05-18T19:05:48.2458716Z [ 23/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_1D142D482B6A09A1.mvfrm
2024-05-18T19:05:48.2460944Z [ 24/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputForUIModule.dll_F8AF917635DFE95C.mvfrm
2024-05-18T19:05:48.2463197Z [ 25/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_014B5108A4F40926.mvfrm
2024-05-18T19:05:48.2465464Z [ 26/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_DE9E45882976451E.mvfrm
2024-05-18T19:05:48.2467684Z [ 27/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_3A17B8A5F24D53F5.mvfrm
2024-05-18T19:05:48.2469937Z [ 28/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F10DA62680CBC480.mvfrm
2024-05-18T19:05:48.2472939Z [ 29/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_8AEE72088092BE7D.mvfrm
2024-05-18T19:05:48.2475563Z [ 30/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_F5C1C8FE75ACBC7F.mvfrm
2024-05-18T19:05:48.2477889Z [ 31/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.MultiplayerModule.dll_CD0146F64A4C1CA5.mvfrm
2024-05-18T19:05:48.2480129Z [ 32/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_C8A0EB562B982FE8.mvfrm
2024-05-18T19:05:48.2482270Z [ 33/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_23EEC46FD50051EF.mvfrm
2024-05-18T19:05:48.2484576Z [ 34/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_CD4874B36649ACA7.mvfrm
2024-05-18T19:05:48.2486946Z [ 35/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_E66F83AA6007371A.mvfrm
2024-05-18T19:05:48.2489580Z [ 36/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_ABFBF72293D6BD75.mvfrm
2024-05-18T19:05:48.2491967Z [ 37/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_2E4028D5CBECBF12.mvfrm
2024-05-18T19:05:48.2534667Z [ 38/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_2338769B48AAB0DC.mvfrm
2024-05-18T19:05:48.2537036Z [ 39/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_E7661FDD49C897B2.mvfrm
2024-05-18T19:05:48.2539465Z [ 40/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_8F4FCC9D14B2FA7A.mvfrm
2024-05-18T19:05:48.2541824Z [ 41/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SpriteMaskModule.dll_DE7B3CA4F4EAC8CF.mvfrm
2024-05-18T19:05:48.2544062Z [ 42/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SketchUpModule.dll_E8F8126EF9F9FC95.mvfrm
2024-05-18T19:05:48.2546400Z [ 43/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.ShaderFoundryModule.dll_A823B1F67E1CFAAA.mvfrm
2024-05-18T19:05:48.2548715Z [ 44/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_0BF5D6216AFCE687.mvfrm
2024-05-18T19:05:48.2550979Z [ 45/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SafeModeModule.dll_00E32D1EAEC8607E.mvfrm
2024-05-18T19:05:48.2553337Z [ 46/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_6943E1B35B6D7E1C.mvfrm
2024-05-18T19:05:48.2555805Z [ 47/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_096FF7782F1DDA3B.mvfrm
2024-05-18T19:05:48.2558102Z [ 48/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_228A095346669791.mvfrm
2024-05-18T19:05:48.2560368Z [ 49/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_88AC2BFB7832717E.mvfrm
2024-05-18T19:05:48.2562623Z [ 50/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_18343BEACA87BFEB.mvfrm
2024-05-18T19:05:48.2564884Z [ 51/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Physics2DModule.dll_328B6E4A0BB433CF.mvfrm
2024-05-18T19:05:48.2567073Z [ 52/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GridModule.dll_82F133F19BE75AB4.mvfrm
2024-05-18T19:05:48.2569296Z [ 53/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GridAndSnapModule.dll_88195CEC59AB9AD1.mvfrm
2024-05-18T19:05:48.2571563Z [ 54/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_CD45F31975DA1979.mvfrm
2024-05-18T19:05:48.2574097Z [ 55/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_FB3803BA51BB4C9E.mvfrm
2024-05-18T19:05:48.2576513Z [ 56/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_45A470F55C80D3E4.mvfrm
2024-05-18T19:05:48.2579098Z [ 57/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_7E60766AD646DDE2.mvfrm
2024-05-18T19:05:48.2581428Z [ 58/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_0CCD9B970892F094.mvfrm
2024-05-18T19:05:48.2583691Z [ 59/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_A58018038392C4BD.mvfrm
2024-05-18T19:05:48.2585979Z [ 60/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.AdaptivePerformanceModule.dll_1C7CE7CA691EC0E0.mvfrm
2024-05-18T19:05:48.2588349Z [ 61/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.AccessibilityModule.dll_0FA85B22E2EB2294.mvfrm
2024-05-18T19:05:48.2590623Z [ 62/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PhysicsModule.dll_FDEDC07BF4C976FD.mvfrm
2024-05-18T19:05:48.2593026Z [ 63/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.VideoModule.dll_327EB8FC0D2A1A51.mvfrm
2024-05-18T19:05:48.2595222Z [ 64/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.VFXModule.dll_78252AC754F3A9FE.mvfrm
2024-05-18T19:05:48.2597382Z [ 65/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_8446CD1AC4A3B803.mvfrm
2024-05-18T19:05:48.2599591Z [ 66/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_297CE07500C4D1F3.mvfrm
2024-05-18T19:05:48.2601948Z [ 67/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_D38D16AABAB7A524.mvfrm
2024-05-18T19:05:48.2604264Z [ 68/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_4D67046EC65EECD9.mvfrm
2024-05-18T19:05:48.2606511Z [ 69/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_21CEA035E89292AD.mvfrm
2024-05-18T19:05:48.2608854Z [ 70/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_F088754EA1FAA886.mvfrm
2024-05-18T19:05:48.2611212Z [ 71/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIAutomationModule.dll_DEE3C1EF7854B599.mvfrm
2024-05-18T19:05:48.2632330Z [ 72/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.dll_598576F80646752D.mvfrm
2024-05-18T19:05:48.2634809Z [ 73/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A8DD7128D5387223.mvfrm
2024-05-18T19:05:48.2637347Z [ 74/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TreeModule.dll_032C0D120B5859FC.mvfrm
2024-05-18T19:05:48.2639762Z [ 75/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TilemapModule.dll_B730A36BE244A0F4.mvfrm
2024-05-18T19:05:48.2642264Z [ 76/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextRenderingModule.dll_B2E703EEADCA2F75.mvfrm
2024-05-18T19:05:48.2644871Z [ 77/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_D714A6E3DA6A76B9.mvfrm
2024-05-18T19:05:48.2647448Z [ 78/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SpriteShapeModule.dll_60F4883534ECB6B2.mvfrm
2024-05-18T19:05:48.2649986Z [ 79/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_8F2C70724AE6BD9B.mvfrm
2024-05-18T19:05:48.2652600Z [ 80/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_4D592A6991848F2D.mvfrm
2024-05-18T19:05:48.2655315Z [ 81/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_9BCB6F425036EE1F.mvfrm
2024-05-18T19:05:48.2657779Z [ 82/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_CBAFED420F7E5BAF.mvfrm
2024-05-18T19:05:48.2660290Z [ 83/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_D3A1F0F57C152F51.mvfrm
2024-05-18T19:05:48.2662957Z [ 84/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_7099ED3945D73C3A.mvfrm
2024-05-18T19:05:48.2665315Z [ 85/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_3A8A4DF056320E35.mvfrm
2024-05-18T19:05:48.2667792Z [ 86/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_441FEF72EEDD500E.mvfrm
2024-05-18T19:05:48.2670268Z [ 87/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_FBF9EF9F32933805.mvfrm
2024-05-18T19:05:48.2672602Z [ 88/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_382BAFED6FF5B5F3.mvfrm
2024-05-18T19:05:48.2674899Z [ 89/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_3EEFC67EBCCEAE51.mvfrm
2024-05-18T19:05:48.2677227Z [ 90/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_F8AB75603EA74AF6.mvfrm
2024-05-18T19:05:48.2679803Z [ 91/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_73BCE91EACBD07A0.mvfrm
2024-05-18T19:05:48.2682152Z [ 92/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_056CECE8E6BB6895.mvfrm
2024-05-18T19:05:48.2684608Z [ 93/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_20366792DD27F1F0.mvfrm
2024-05-18T19:05:48.2735193Z [ 94/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_35641A745CC0FAF4.mvfrm
2024-05-18T19:05:48.2738094Z [ 95/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_900B63630567508B.mvfrm
2024-05-18T19:05:48.2740854Z [ 96/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_4544C891ECB4773F.mvfrm
2024-05-18T19:05:48.2743619Z [ 97/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_A7E7CB89C08E3C5B.mvfrm
2024-05-18T19:05:48.2746333Z [ 98/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_63BF603C9B04A20A.mvfrm
2024-05-18T19:05:48.2748874Z [ 99/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_4E769D0E093BDAC4.mvfrm
2024-05-18T19:05:48.2751267Z [100/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_B29AC6634500E31D.mvfrm
2024-05-18T19:05:48.2753594Z [101/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_0C01905C4246C332.mvfrm
2024-05-18T19:05:48.2756011Z [102/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_7E6C5BB8FA72B60C.mvfrm
2024-05-18T19:05:48.2759204Z [103/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_FC00D6865B1F0643.mvfrm
2024-05-18T19:05:48.2762124Z [104/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_F631A0D89129F154.mvfrm
2024-05-18T19:05:48.2764626Z [105/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_E8715F32F133E5B4.mvfrm
2024-05-18T19:05:48.2767107Z [106/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_F068792659D85E42.mvfrm
2024-05-18T19:05:48.2769664Z [107/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_15E8840B6F8B32A5.mvfrm
2024-05-18T19:05:48.2772297Z [108/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_49D7104EC576CA2D.mvfrm
2024-05-18T19:05:48.2774951Z [109/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_0AAEF4952F96A730.mvfrm
2024-05-18T19:05:48.2777272Z [110/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_449A984608204A9B.mvfrm
2024-05-18T19:05:48.2779861Z [111/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_A9AB5C1647538839.mvfrm
2024-05-18T19:05:48.2782180Z [112/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.HierarchyCoreModule.dll_1303EA24CA90FEAF.mvfrm
2024-05-18T19:05:48.2784664Z [113/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Editor.ConversionSystem.UnityAdditionalFile.txt
2024-05-18T19:05:48.2786854Z [114/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp2
2024-05-18T19:05:48.2788826Z [115/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Editor.ConversionSystem.rsp2
2024-05-18T19:05:48.2790915Z [116/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.UnityAdditionalFile.txt
2024-05-18T19:05:48.2792764Z [117/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.rsp2
2024-05-18T19:05:48.2794709Z [118/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.UnityAdditionalFile.txt
2024-05-18T19:05:48.2797222Z [119/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Editor.ConversionSystem.dll.mvfrm.rsp
2024-05-18T19:05:48.2799468Z [120/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm.rsp
2024-05-18T19:05:48.2801385Z [121/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.dll.mvfrm.rsp
2024-05-18T19:05:48.2803531Z [122/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_4E1571B6C8A30624.mvfrm
2024-05-18T19:05:48.2806364Z [123/175    0s] MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.dll.mvfrm
2024-05-18T19:05:48.2809195Z [124/175    0s] MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Editor.ConversionSystem.dll.mvfrm
2024-05-18T19:05:48.2811644Z [125/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp
2024-05-18T19:05:48.2813847Z [126/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.rsp
2024-05-18T19:05:48.2816000Z [127/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Editor.ConversionSystem.rsp
2024-05-18T19:05:48.2818644Z [128/175    0s] MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm
2024-05-18T19:05:48.2820946Z [129/175    2s] Csc Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll (+2 others)
2024-05-18T19:05:48.2823478Z [           0s] Csc Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll (+2 others) [CacheWrite 00000000000000000000000000000003]
2024-05-18T19:05:48.2825916Z [130/175    0s] Csc Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.dll (+2 others)
2024-05-18T19:05:48.2828287Z [           0s] Csc Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.dll (+2 others) [CacheWrite 00000000000000000000000000000003]
2024-05-18T19:05:48.2830908Z [131/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.AI.Navigation.ref.dll_DE872EE15FE1F97C.mvfrm
2024-05-18T19:05:48.2833390Z [132/175    3s] Csc Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Editor.ConversionSystem.dll (+2 others)
2024-05-18T19:05:48.2836235Z [           0s] Csc Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Editor.ConversionSystem.dll (+2 others) [CacheWrite 00000000000000000000000000000003]
2024-05-18T19:05:48.2839182Z [133/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.SysrootPackage.Editor.ref.dll_795E971823712576.mvfrm
2024-05-18T19:05:48.2841748Z [134/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Editor.UnityAdditionalFile.txt
2024-05-18T19:05:48.2844016Z [135/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Editor.rsp2
2024-05-18T19:05:48.2846014Z [136/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.rsp2
2024-05-18T19:05:48.2848305Z [137/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.UnityAdditionalFile.txt
2024-05-18T19:05:48.2850961Z [138/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Editor.dll.mvfrm.rsp
2024-05-18T19:05:48.2853221Z [139/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm.rsp
2024-05-18T19:05:48.2896041Z [140/175    0s] MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm
2024-05-18T19:05:48.2898104Z [141/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Editor.rsp
2024-05-18T19:05:48.2899876Z [142/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.rsp
2024-05-18T19:05:48.2902088Z [143/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.AI.Navigation.Editor.ConversionSystem.ref.dll_0D6E4E7A57F11024.mvfrm
2024-05-18T19:05:48.2904393Z [144/175    0s] Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll (+2 others)
2024-05-18T19:05:48.2906853Z [           0s] Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll (+2 others) [CacheWrite 00000000000000000000000000000003]
2024-05-18T19:05:48.2909310Z [145/175    0s] MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Editor.dll.mvfrm
2024-05-18T19:05:48.2911541Z [146/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Sysroot.Linux_x86_64.ref.dll_47C0B0C1257E42B5.mvfrm
2024-05-18T19:05:48.2913779Z [147/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Updater.UnityAdditionalFile.txt
2024-05-18T19:05:48.2915827Z [148/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Updater.rsp2
2024-05-18T19:05:48.2917774Z [149/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Updater.dll.mvfrm.rsp
2024-05-18T19:05:48.2919802Z [150/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.rsp2
2024-05-18T19:05:48.2921841Z [151/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm.rsp
2024-05-18T19:05:48.2924028Z [152/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.UnityAdditionalFile.txt
2024-05-18T19:05:48.2926314Z [153/175    0s] MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm
2024-05-18T19:05:48.2928299Z [154/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Updater.rsp
2024-05-18T19:05:48.2930212Z [155/175    0s] WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.rsp
2024-05-18T19:05:48.2932064Z [156/175    0s] Csc Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Editor.dll (+2 others)
2024-05-18T19:05:48.2934436Z [           0s] Csc Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Editor.dll (+2 others) [CacheWrite 00000000000000000000000000000003]
2024-05-18T19:05:48.2936820Z [157/175    0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.AI.Navigation.Editor.ref.dll_9C82A0E57CE4B9F5.mvfrm
2024-05-18T19:05:48.2939063Z [158/175    0s] Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll (+2 others)
2024-05-18T19:05:48.2941405Z [           0s] Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll (+2 others) [CacheWrite 00000000000000000000000000000003]
2024-05-18T19:05:48.2943367Z [159/175    0s] CopyFiles Library/ScriptAssemblies/Unity.AI.Navigation.dll
2024-05-18T19:05:48.2945049Z [160/175    0s] CopyFiles Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.pdb
2024-05-18T19:05:48.2946790Z [161/175    0s] CopyFiles Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.dll
2024-05-18T19:05:48.2948410Z [162/175    0s] CopyFiles Library/ScriptAssemblies/Unity.AI.Navigation.Editor.dll
2024-05-18T19:05:48.2950001Z [163/175    0s] CopyFiles Library/ScriptAssemblies/Unity.AI.Navigation.Editor.pdb
2024-05-18T19:05:48.2951749Z [164/175    0s] CopyFiles Library/ScriptAssemblies/Unity.AI.Navigation.Editor.ConversionSystem.dll
2024-05-18T19:05:48.2953783Z [165/175    0s] CopyFiles Library/ScriptAssemblies/Unity.AI.Navigation.pdb
2024-05-18T19:05:48.2955715Z [166/175    0s] CopyFiles Library/ScriptAssemblies/Unity.AI.Navigation.Editor.ConversionSystem.pdb
2024-05-18T19:05:48.2957799Z [167/175    0s] CopyFiles Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll
2024-05-18T19:05:48.2959738Z [168/175    0s] CopyFiles Library/ScriptAssemblies/Unity.SysrootPackage.Editor.pdb
2024-05-18T19:05:48.2961614Z [169/175    0s] CopyFiles Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll
2024-05-18T19:05:48.2963477Z [170/175    0s] CopyFiles Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.pdb
2024-05-18T19:05:48.2965838Z [171/175    0s] MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Updater.dll.mvfrm
2024-05-18T19:05:48.2968045Z [172/175    0s] Csc Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Updater.dll (+2 others)
2024-05-18T19:05:48.2970627Z [           0s] Csc Library/Bee/artifacts/2400b0aE.dag/Unity.AI.Navigation.Updater.dll (+2 others) [CacheWrite 00000000000000000000000000000003]
2024-05-18T19:05:48.2972825Z [173/175    0s] CopyFiles Library/ScriptAssemblies/Unity.AI.Navigation.Updater.dll
2024-05-18T19:05:48.2974758Z [174/175    0s] CopyFiles Library/ScriptAssemblies/Unity.AI.Navigation.Updater.pdb
2024-05-18T19:05:48.2976393Z *** Tundra build success (14.44 seconds), 174 items updated, 175 evaluated
2024-05-18T19:05:48.3034535Z Total cache size 407820
2024-05-18T19:05:48.3035560Z Total cache size after purge 407820
2024-05-18T19:05:48.3082191Z AssetDatabase: script compilation time: 16.815607s
2024-05-18T19:05:48.3386534Z Begin MonoManager ReloadAssembly
2024-05-18T19:05:48.9092969Z icall.c:1842:
2024-05-18T19:05:48.9562242Z icall.c:1842:
2024-05-18T19:05:48.9704313Z icall.c:1842:
2024-05-18T19:05:48.9763766Z icall.c:1842:
2024-05-18T19:05:49.0071884Z icall.c:1842:
2024-05-18T19:05:49.0080110Z icall.c:1842:
2024-05-18T19:05:49.0088428Z icall.c:1842:
2024-05-18T19:05:49.0098208Z icall.c:1842:
2024-05-18T19:05:49.0116340Z icall.c:1842:
2024-05-18T19:05:49.0344770Z icall.c:1842:
2024-05-18T19:05:49.0355018Z icall.c:1842:
2024-05-18T19:05:49.0787694Z icall.c:1842:
2024-05-18T19:05:49.1685242Z - Loaded All Assemblies, in  0.830 seconds
2024-05-18T19:05:49.2599658Z Start importing Assets using Guid(00000000000000001000000000000000) (DefaultImporter) -> (artifact id: '8cf0c2da124d890d5d1b859dcbaf4e67') in 0.049716225 seconds
2024-05-18T19:05:49.2653569Z Start importing ProjectSettings/InputManager.asset using Guid(00000000000000002000000000000000) (LibraryAssetImporter) -> (artifact id: 'd7cbb2f293d488d47214d777b9ab9143') in 0.002085588 seconds
2024-05-18T19:05:49.2700704Z Start importing ProjectSettings/TagManager.asset using Guid(00000000000000003000000000000000) (LibraryAssetImporter) -> (artifact id: 'e12af14f4aa32bc40c17248af2e3cce2') in 0.003622653 seconds
2024-05-18T19:05:49.2746022Z Start importing ProjectSettings/ProjectSettings.asset using Guid(00000000000000004000000000000000) (LibraryAssetImporter) -> (artifact id: '53cd9abebf724847b102d74e074a7005') in 0.003365774 seconds
2024-05-18T19:05:49.2772155Z Start importing ProjectSettings/AudioManager.asset using Guid(00000000000000006000000000000000) (LibraryAssetImporter) -> (artifact id: '1f9b6fd92dcfbee817b95a134e3d28fc') in 0.001548727 seconds
2024-05-18T19:05:49.2797649Z Start importing ProjectSettings/TimeManager.asset using Guid(00000000000000007000000000000000) (LibraryAssetImporter) -> (artifact id: '3e7b459e98cfb21a8ab539d867e021e1') in 0.001472816 seconds
2024-05-18T19:05:49.2825650Z Start importing ProjectSettings/DynamicsManager.asset using Guid(00000000000000008000000000000000) (LibraryAssetImporter) -> (artifact id: '144119a1ab01c815a678c4d054cdf8e5') in 0.001724866 seconds
2024-05-18T19:05:49.2853056Z Start importing ProjectSettings/QualitySettings.asset using Guid(00000000000000009000000000000000) (LibraryAssetImporter) -> (artifact id: '50d10dfdf9e7649bcfa4ef07fad090d4') in 0.001710949 seconds
2024-05-18T19:05:49.2880842Z Start importing ProjectSettings/EditorBuildSettings.asset using Guid(0000000000000000b000000000000000) (LibraryAssetImporter) -> (artifact id: '02e711b73ebda4a0e7a32469dbba3ae8') in 0.001604901 seconds
2024-05-18T19:05:49.2918318Z Start importing ProjectSettings/EditorSettings.asset using Guid(0000000000000000c000000000000000) (LibraryAssetImporter) -> (artifact id: '471e955cc34338ba6e9160a74550aa9b') in 0.001531996 seconds
2024-05-18T19:05:49.2944544Z Start importing ProjectSettings/NavMeshAreas.asset using Guid(00000000000000004100000000000000) (LibraryAssetImporter) -> (artifact id: '98ab0a1852fd3ef0454a55ef8869d4c6') in 0.001560179 seconds
2024-05-18T19:05:49.2972438Z Start importing ProjectSettings/Physics2DSettings.asset using Guid(00000000000000005100000000000000) (LibraryAssetImporter) -> (artifact id: '8032544aff07135c44b0aec745df5b87') in 0.001689389 seconds
2024-05-18T19:05:49.3000146Z Start importing ProjectSettings/GraphicsSettings.asset using Guid(00000000000000006100000000000000) (LibraryAssetImporter) -> (artifact id: 'b0333d69fa7e961821ffcb2378da820d') in 0.001543828 seconds
2024-05-18T19:05:49.3026024Z Start importing ProjectSettings/ClusterInputManager.asset using Guid(00000000000000007100000000000000) (LibraryAssetImporter) -> (artifact id: '5a028a71a6163b7bc9a46219c48662ec') in 0.001488995 seconds
2024-05-18T19:05:49.3053882Z Start importing ProjectSettings/UnityConnectSettings.asset using Guid(0000000000000000a100000000000000) (LibraryAssetImporter) -> (artifact id: '4978576e64e73b5a2e34ad1ebd36d3e4') in 0.001621061 seconds
2024-05-18T19:05:49.3077706Z Start importing ProjectSettings/PresetManager.asset using Guid(0000000000000000b100000000000000) (LibraryAssetImporter) -> (artifact id: '669bd2cb5cdf99ef516d1350fa42393e') in 0.001439994 seconds
2024-05-18T19:05:49.3103909Z Start importing ProjectSettings/VFXManager.asset using Guid(0000000000000000c100000000000000) (LibraryAssetImporter) -> (artifact id: 'c15523da67325d03c520fccf41939336') in 0.00161964 seconds
2024-05-18T19:05:49.3127938Z Start importing ProjectSettings/VersionControlSettings.asset using Guid(0000000000000000d100000000000000) (LibraryAssetImporter) -> (artifact id: '6699f6a30141aac50ed115ec20e131c2') in 0.001427251 seconds
2024-05-18T19:05:49.3154175Z Start importing ProjectSettings/MemorySettings.asset using Guid(0000000000000000f100000000000000) (LibraryAssetImporter) -> (artifact id: '19f032dc933bd79e61da5c81f7ddd1ac') in 0.001605163 seconds
2024-05-18T19:05:49.3180953Z Start importing ProjectSettings/MultiplayerManager.asset using Guid(00000000000000000200000000000000) (LibraryAssetImporter) -> (artifact id: 'fd3a92b7b9db12894691b501432c2aa8') in 0.001622865 seconds
2024-05-18T19:05:49.3200347Z Start importing Library/BuildInstructions using Guid(00000000000000002300000000000000) (DefaultImporter) -> (artifact id: '1bf145b6d04826e909660d079764b43f') in 0.001002408 seconds
2024-05-18T19:05:49.3221280Z Start importing Packages/com.unity.sysroot using Guid(80a5d86110aec2b82ed2eeee5202f404) (DefaultImporter) -> (artifact id: '987581829f4e75fb0c82b3a81d08a81f') in 0.001130287 seconds
2024-05-18T19:05:49.3242410Z Start importing Packages/com.unity.sysroot.linux-x86_64 using Guid(6224db804065238177615ef8cfec5e79) (DefaultImporter) -> (artifact id: '9cc19028377fb5d00ec917a8d1753972') in 0.001055257 seconds
2024-05-18T19:05:49.3262153Z Start importing Assets/Scenes using Guid(131a6b21c8605f84396be9f6751fb6e3) (DefaultImporter) -> (artifact id: '4bdc3b1baa68d3b76c6ee4a60734077e') in 0.000985447 seconds
2024-05-18T19:05:49.3283700Z Start importing Packages/com.unity.toolchain.linux-x86_64 using Guid(17ecf2a2e9026fa440a7f5727d02c95a) (DefaultImporter) -> (artifact id: '129eb96db96fdef076d03ce82b3d19e7') in 0.001046891 seconds
2024-05-18T19:05:49.3305060Z Start importing Packages/com.unity.ai.navigation using Guid(778efc4a0d60607f97e733a30532487c) (DefaultImporter) -> (artifact id: 'd72cc3e11b668b290db899f2aeb0ee22') in 0.001109799 seconds
2024-05-18T19:05:49.3324748Z Start importing Packages/com.unity.modules.accessibility using Guid(783ee1c8fd4414848db1be97aacf44fb) (DefaultImporter) -> (artifact id: '7365105cb3b724b75c36e9eb23fc16bb') in 0.000959168 seconds
2024-05-18T19:05:49.3346721Z Start importing Packages/com.unity.modules.ai using Guid(fd871a8be47119612f7c254e96a822b7) (DefaultImporter) -> (artifact id: '13bdf5de3c475dff16f22f4b2a6a1234') in 0.001095733 seconds
2024-05-18T19:05:49.3366377Z Start importing Packages/com.unity.sysroot/Tests using Guid(21355b98f3d94d714ad8c543adb3c7ef) (DefaultImporter) -> (artifact id: 'a48ed9aad34aba269f2cc052c203ef25') in 0.000947707 seconds
2024-05-18T19:05:49.3388305Z Start importing Packages/com.unity.ai.navigation/Editor using Guid(63b588f3892bb4b5eb73ad3d2791e05c) (DefaultImporter) -> (artifact id: '62792e56924d8e1bc835046f6cb58300') in 0.001088469 seconds
2024-05-18T19:05:49.3407954Z Start importing Packages/com.unity.ai.navigation/Gizmos using Guid(93b9715f5a4bf471c8154f6cbab7e94d) (DefaultImporter) -> (artifact id: '65333826d659b69a69c8ea7a4afb185e') in 0.000946214 seconds
2024-05-18T19:05:49.3429348Z Start importing Packages/com.unity.ai.navigation/Tests using Guid(a4ffdd6288cb842a8ac2b31823ceaab0) (DefaultImporter) -> (artifact id: 'fdf8ccdb083d3446df3753653c7e4a49') in 0.001052843 seconds
2024-05-18T19:05:49.3448932Z Start importing Packages/com.unity.sysroot/Editor using Guid(169765632ffb0f87cb8b3c23abe48007) (DefaultImporter) -> (artifact id: 'b196d02e4e43bd3f33c814f4bc211304') in 0.000948528 seconds
2024-05-18T19:05:49.3470620Z Start importing Packages/com.unity.sysroot.linux-x86_64/Tests using Guid(27987f7a31ce040af97591e628278304) (DefaultImporter) -> (artifact id: '4f22bf88e25b561cecce3fc07bee917c') in 0.001074072 seconds
2024-05-18T19:05:49.3491066Z Start importing Packages/com.unity.toolchain.linux-x86_64/Tests using Guid(5a0086b2cca8070de884733169bbf04e) (DefaultImporter) -> (artifact id: '2f36e472c4c71cbeb17063a70ed9979c') in 0.000954028 seconds
2024-05-18T19:05:49.3513364Z Start importing Packages/com.unity.sysroot.linux-x86_64/Editor using Guid(9a994b3ee6d83415a9fd8831f7791f85) (DefaultImporter) -> (artifact id: 'cfafecb40b9f44bea7dc22ce65eb8696') in 0.00108902 seconds
2024-05-18T19:05:49.3533861Z Start importing Packages/com.unity.toolchain.linux-x86_64/Editor using Guid(3bf5adcbe74ea0cf9b97900b9f6dfaac) (DefaultImporter) -> (artifact id: '9ab3c4356aa0723aed4e79cffb973ea4') in 0.00098706 seconds
2024-05-18T19:05:49.3556131Z Start importing Packages/com.unity.ai.navigation/EditorResources using Guid(bcb26a80e56f33046a81574f96664cfe) (DefaultImporter) -> (artifact id: '3462cac18acb737117327fbd786d1967') in 0.001055738 seconds
2024-05-18T19:05:49.3576685Z Start importing Packages/com.unity.ai.navigation/Runtime using Guid(ce67aa87f613246dda63a54a59c6399e) (DefaultImporter) -> (artifact id: 'ea3f1316ea9c9ff2ac3cbbd5fd0b1153') in 0.000966402 seconds
2024-05-18T19:05:49.3596546Z Start importing Packages/com.unity.ai.navigation/Editor/ConversionSystem using Guid(d25d346918c1247368b4cb66a787b59e) (DefaultImporter) -> (artifact id: 'c7a72b183103289e6c39c512dfed98c9') in 0.000969988 seconds
2024-05-18T19:05:49.3615990Z Start importing Packages/com.unity.sysroot.linux-x86_64/Tests/Editor using Guid(a4ba451dcf348469cb1fd6802655fd98) (DefaultImporter) -> (artifact id: '2a8738a182e679b28b85e492907e6bc6') in 0.000939271 seconds
2024-05-18T19:05:49.3638840Z Start importing Packages/com.unity.ai.navigation/Tests/Runtime using Guid(077676819252b4349a7677a483a0a8f4) (DefaultImporter) -> (artifact id: '341cc1aaf0425f369ef57acef4453605') in 0.001089852 seconds
2024-05-18T19:05:49.3658296Z Start importing Packages/com.unity.ai.navigation/Tests/Editor using Guid(276ab4071255d9f49931e6a8373248e1) (DefaultImporter) -> (artifact id: '993a6bf0064f11fef32d8794b0ce141c') in 0.000948267 seconds
2024-05-18T19:05:49.3678905Z Start importing Packages/com.unity.toolchain.linux-x86_64/Tests/Editor using Guid(a92e90f8d5f3b7bd48967a27d8fbdebe) (DefaultImporter) -> (artifact id: 'a2349b5b98315c0e8af38e3e0f4b8a57') in 0.000999043 seconds
2024-05-18T19:05:49.3701418Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay using Guid(aa309129cb54440488d6edd8358f5aec) (DefaultImporter) -> (artifact id: '95ef8820271fda0dbceadd955f058fe9') in 0.001122312 seconds
2024-05-18T19:05:49.3726748Z Start importing Packages/com.unity.ai.navigation/Editor/Updater using Guid(aaa4efef82a9346dba667d74ff3d5075) (DefaultImporter) -> (artifact id: 'b7d21f4ca984eff010b5f0e2d9ff7adb') in 0.001026513 seconds
2024-05-18T19:05:49.3747231Z Start importing Packages/com.unity.sysroot/Tests/Editor using Guid(4cac27dd0398cfe66aa1f1eb45442a1a) (DefaultImporter) -> (artifact id: '853b9191773f2df3cbfc93ab56cc6b61') in 0.001037243 seconds
2024-05-18T19:05:49.3766898Z Start importing Packages/com.unity.ai.navigation/Tests/Editor/Converter using Guid(585e4d2e85b344909fd03397aa977b50) (DefaultImporter) -> (artifact id: 'd553aefb9f6b41251ca61ea1a36f5f42') in 0.000971851 seconds
2024-05-18T19:05:49.3789864Z Start importing Packages/com.unity.ai.navigation/Tests/Runtime/OffMeshLinkTests using Guid(9c10f4966eb108848acf7461aaf6057e) (DefaultImporter) -> (artifact id: '0534bd09acbe564c4b3f7d3aaf65cac4') in 0.001146908 seconds
2024-05-18T19:05:49.3805975Z Start importing Packages/com.unity.ai.navigation/Tests/Runtime/OffMeshLinkTests/SceneSetup using Guid(028144d6018e97b4eabdb685c9fc01a0) (DefaultImporter) -> (artifact id: '793d45771505533aa9f554e5bf8909b8') in 0.000996317 seconds
2024-05-18T19:05:49.3829910Z Start importing Packages/com.unity.toolchain.linux-x86_64/Tests/Editor/Unity.Toolchain.Linux-x86_64.EditorTests.asmdef using Guid(138e8122bb82938fe9a6eee7a4985427) (AssemblyDefinitionImporter) -> (artifact id: '833b35ea812cd452f99d88da7b269cab') in 0.001770099 seconds
2024-05-18T19:05:49.3849631Z Start importing Packages/com.unity.sysroot/Editor/Unity.SysrootPackage.Editor.asmdef using Guid(435a4e0ece4e23c4882730a295bbd8cd) (AssemblyDefinitionImporter) -> (artifact id: '29033395399a8e6c5570b08458bced5e') in 0.001444563 seconds
2024-05-18T19:05:49.3871428Z Start importing Packages/com.unity.ai.navigation/Tests/Runtime/Unity.AI.Navigation.Tests.asmdef using Guid(455cd750f394b1c41b963b3335eae29c) (AssemblyDefinitionImporter) -> (artifact id: 'd39b250b64ed66eef313b9a11ba23ca8') in 0.001612206 seconds
2024-05-18T19:05:49.3894036Z Start importing Packages/com.unity.ai.navigation/Editor/ConversionSystem/Unity.AI.Navigation.Editor.ConversionSystem.asmdef using Guid(c57630adab7a340ec94f10e4fcac12f1) (AssemblyDefinitionImporter) -> (artifact id: 'd7b085b6aa2822b84aab29410ffa3e85') in 0.001622164 seconds
2024-05-18T19:05:49.3914333Z Start importing Packages/com.unity.ai.navigation/Editor/Updater/Unity.AI.Navigation.Updater.asmdef using Guid(1664e92176d434ccd902c1705fefe682) (AssemblyDefinitionImporter) -> (artifact id: 'db37fb218e7a29bccd54d855f87cda2e') in 0.00150235 seconds
2024-05-18T19:05:49.3933100Z Start importing Packages/com.unity.ai.navigation/Editor/Unity.AI.Navigation.Editor.asmdef using Guid(86c9d8e67265f41469be06142c397d17) (AssemblyDefinitionImporter) -> (artifact id: 'ee973aff877daccb21f1cdf38d004b61') in 0.001409237 seconds
2024-05-18T19:05:49.3955836Z Start importing Packages/com.unity.ai.navigation/Tests/Runtime/OffMeshLinkTests/Unity.AI.Navigation.LegacyOffMeshLink.Tests.asmdef using Guid(68d7ff144262c9148888e665efa8692c) (AssemblyDefinitionImporter) -> (artifact id: '6a73990d40e164a6b86a6e5b186f1dcc') in 0.001579534 seconds
2024-05-18T19:05:49.3975060Z Start importing Packages/com.unity.toolchain.linux-x86_64/Editor/Unity.Toolchain.Linux-x86_64.asmdef using Guid(f851af5d86c208af09cd265d08e3b3e2) (AssemblyDefinitionImporter) -> (artifact id: '54a7a6a7007b8b475c38aecb8d4d0207') in 0.001455904 seconds
2024-05-18T19:05:49.3996379Z Start importing Packages/com.unity.ai.navigation/Tests/Editor/Unity.AI.Navigation.Editor.Tests.asmdef using Guid(794824b4a8f003f47a92875e8342f790) (AssemblyDefinitionImporter) -> (artifact id: '2718bd76edf1eee13112f0f206e09caf') in 0.001548626 seconds
2024-05-18T19:05:49.4018027Z Start importing Packages/com.unity.sysroot.linux-x86_64/Tests/Editor/Unity.Sysroot.Linux-x86_64.EditorTests.asmdef using Guid(1ac444c25ae4642a2b37c1c9156d384f) (AssemblyDefinitionImporter) -> (artifact id: 'd3ceec78a076d251ea6c75bec7daf734') in 0.00157166 seconds
2024-05-18T19:05:49.4037705Z Start importing Packages/com.unity.sysroot/Tests/Editor/Unity.Sysroot.EditorTests.asmdef using Guid(4b746f9393832b79384ac03cddf8eb94) (AssemblyDefinitionImporter) -> (artifact id: 'b94f56acdeba4a7f29b2fe34124712ae') in 0.001452948 seconds
2024-05-18T19:05:49.4060196Z Start importing Packages/com.unity.sysroot.linux-x86_64/Editor/Unity.Sysroot.Linux-x86_64.asmdef using Guid(7bb4ea1d3f6d64e25ac0b0dd565b23aa) (AssemblyDefinitionImporter) -> (artifact id: '72a8be3133e94eda318555eb09950291') in 0.001643053 seconds
2024-05-18T19:05:49.4080825Z Start importing Packages/com.unity.ai.navigation/Runtime/Unity.AI.Navigation.asmdef using Guid(8c4dd21966739024fbd72155091d199e) (AssemblyDefinitionImporter) -> (artifact id: '178f1df338f3f0f586b82db1a4679252') in 0.001456545 seconds
2024-05-18T19:05:49.4096950Z Start importing Packages/com.unity.modules.ai/package.ModuleCompilationTrigger using Guid(e2d09a26ce46dc617b54e49a534ace20) (DefaultImporter) -> (artifact id: '6c23c08c60b2c07c76b71ea4a63819ce') in 0.000980137 seconds
2024-05-18T19:05:49.4113373Z Start importing Packages/com.unity.modules.accessibility/package.ModuleCompilationTrigger using Guid(4745d06d5a7ca576dcf9e5e67b417652) (DefaultImporter) -> (artifact id: 'b9876e31624ebf9e7f4e72bd55adbb85') in 0.001066137 seconds
2024-05-18T19:05:49.4120652Z Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins.
2024-05-18T19:05:49.7077743Z Native extension for LinuxStandalone target not found
2024-05-18T19:05:50.4060674Z Mono: successfully reloaded assembly
2024-05-18T19:05:50.6433570Z - Finished resetting the current domain, in  1.231 seconds
2024-05-18T19:05:50.6463207Z Domain Reload Profiling: 2063ms
2024-05-18T19:05:50.6464182Z    BeginReloadAssembly (612ms)
2024-05-18T19:05:50.6465100Z        ExecutionOrderSort (0ms)
2024-05-18T19:05:50.6466015Z        DisableScriptedObjects (15ms)
2024-05-18T19:05:50.6466934Z        BackupInstance (0ms)
2024-05-18T19:05:50.6467804Z        ReleaseScriptingObjects (0ms)
2024-05-18T19:05:50.6468742Z        CreateAndSetChildDomain (116ms)
2024-05-18T19:05:50.6469683Z    RebuildCommonClasses (148ms)
2024-05-18T19:05:50.6470673Z    RebuildNativeTypeToScriptingClass (16ms)
2024-05-18T19:05:50.6471755Z    initialDomainReloadingComplete (36ms)
2024-05-18T19:05:50.6472805Z    LoadAllAssembliesAndSetupDomain (17ms)
2024-05-18T19:05:50.6473788Z        LoadAssemblies (120ms)
2024-05-18T19:05:50.6474784Z        RebuildTransferFunctionScriptingTraits (0ms)
2024-05-18T19:05:50.6475828Z        AnalyzeDomain (11ms)
2024-05-18T19:05:50.6476651Z            TypeCache.Refresh (7ms)
2024-05-18T19:05:50.6477536Z                TypeCache.ScanAssembly (2ms)
2024-05-18T19:05:50.6478473Z            BuildScriptInfoCaches (2ms)
2024-05-18T19:05:50.6479422Z            ResolveRequiredComponents (1ms)
2024-05-18T19:05:50.6480402Z    FinalizeReload (1234ms)
2024-05-18T19:05:50.6481253Z        ReleaseScriptCaches (0ms)
2024-05-18T19:05:50.6482125Z        RebuildScriptCaches (0ms)
2024-05-18T19:05:50.6483064Z        SetupLoadedEditorAssemblies (668ms)
2024-05-18T19:05:50.6484018Z            LogAssemblyErrors (0ms)
2024-05-18T19:05:50.6485050Z            InitializePlatformSupportModulesInManaged (62ms)
2024-05-18T19:05:50.6486182Z            SetLoadedEditorAssemblies (9ms)
2024-05-18T19:05:50.6487217Z            BeforeProcessingInitializeOnLoad (130ms)
2024-05-18T19:05:50.6488349Z            ProcessInitializeOnLoadAttributes (393ms)
2024-05-18T19:05:50.6489525Z            ProcessInitializeOnLoadMethodAttributes (54ms)
2024-05-18T19:05:50.6490688Z            AfterProcessingInitializeOnLoad (19ms)
2024-05-18T19:05:50.6491720Z            EditorAssembliesLoaded (0ms)
2024-05-18T19:05:50.6492632Z        ExecutionOrderSort2 (0ms)
2024-05-18T19:05:50.6493850Z        AwakeInstancesAfterBackupRestoration (36ms)
2024-05-18T19:05:50.7789310Z Start importing Library/BuildPlayer.prefs using Guid(00000000000000005000000000000000) (DefaultImporter) -> (artifact id: 'd54eb0fd1581909c2b08639149368a31') in 0.025511015 seconds
2024-05-18T19:05:50.7864448Z Start importing Assets/Scenes/SampleScene.unity using Guid(2cda990e2423bbf4892e6590ba056729) (DefaultImporter) -> (artifact id: '96452562a74767876fddf22d4adb7628') in 0.00716177 seconds
2024-05-18T19:05:50.8362948Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/d_NavigationOverlay@128.png using Guid(80899a9fbe3d3364eac2c5924c0a28cf) (TextureImporter) -> (artifact id: '87942e0dc2dcb0abf5fd102067b4056d') in 0.049362227 seconds
2024-05-18T19:05:50.8818403Z Start importing Packages/com.unity.ai.navigation/EditorResources/NavigationWindowIcon.png using Guid(b0172c3ab97e219478711e1fbe9630f2) (TextureImporter) -> (artifact id: '2d455194969ffb7000f21d224c9e6eca') in 0.02952633 seconds
2024-05-18T19:05:50.8876293Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/NavigationOverlay On@256.png using Guid(b05e7d8dc2bdbb14ab5b1da240ac65d5) (TextureImporter) -> (artifact id: 'f3658b19d3cfca79a541c13a5999cc3b') in 0.013876627 seconds
2024-05-18T19:05:50.9045161Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/NavigationOverlay On.png using Guid(c136efa5cc6d99a4d9e7bad0209aea25) (TextureImporter) -> (artifact id: '83cff0280a516af3f1fec6c4c11495cc') in 0.012380127 seconds
2024-05-18T19:05:50.9181482Z Start importing Packages/com.unity.ai.navigation/EditorResources/d_NavigationWindowIcon.png using Guid(425f55e9ef81a5e48b87c5d6b1bbf35c) (TextureImporter) -> (artifact id: '9fa384447acd47b1af82025b8281f3c2') in 0.009531518 seconds
2024-05-18T19:05:50.9349151Z Start importing Packages/com.unity.ai.navigation/Gizmos/NavMeshLink Icon.png using Guid(92f4afa3e25264f5b964937ccea49ff2) (TextureImporter) -> (artifact id: 'aff292a3c0297ffeed13f98371d6bd4c') in 0.014143785 seconds
2024-05-18T19:05:50.9424598Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/d_NavigationOverlay On@2x.png using Guid(a206ff0ddc681e642a2e62fc57a7d51c) (TextureImporter) -> (artifact id: '9aa1066ee6b3ec4681465d6c4a103631') in 0.007185734 seconds
2024-05-18T19:05:50.9499462Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/NavigationOverlay On@2x.png using Guid(334589c596cc053418f700189f91111c) (TextureImporter) -> (artifact id: '88a2f81c327fb6e82f451def7bff211d') in 0.007212374 seconds
2024-05-18T19:05:50.9584535Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/NavigationOverlay@16.png using Guid(731522d95656bec42a5fc0bdc672ebe9) (TextureImporter) -> (artifact id: 'b98cb6efab5cd117e1866240c44405a9') in 0.007388222 seconds
2024-05-18T19:05:50.9654032Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/d_NavigationOverlay On@64.png using Guid(b3cd430fb0ffe164fa829262bb9e1d4b) (TextureImporter) -> (artifact id: '175cc7045009b842b37ef09c25b5e983') in 0.007388843 seconds
2024-05-18T19:05:50.9729857Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/NavigationOverlay.png using Guid(e3f0b16456276c94aab8bd6664208dc3) (TextureImporter) -> (artifact id: '82071a5f210ec13e54f631f43a9d565b') in 0.007248812 seconds
2024-05-18T19:05:50.9852271Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/NavigationOverlay@256.png using Guid(1497075210b6dcd4c8f31ecfc6c5c79c) (TextureImporter) -> (artifact id: '2d76e668c16ae997b599973ec36038f0') in 0.011860018 seconds
2024-05-18T19:05:50.9961163Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/NavigationOverlay On@128.png using Guid(44837f46c53a42246a6de7fa161e0d00) (TextureImporter) -> (artifact id: 'ff3feed72651aeba9adfe8ee53d0246b') in 0.010585442 seconds
2024-05-18T19:05:51.0159573Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/d_NavigationOverlay On@256.png using Guid(642f7453935154b44afc516c07b1d009) (TextureImporter) -> (artifact id: '6a8feefb6983247433eb7516cb8a23c2') in 0.019496493 seconds
2024-05-18T19:05:51.0354739Z Start importing Packages/com.unity.ai.navigation/Gizmos/NavMeshSurface Icon.png using Guid(e4f97225bcfb64760a1c81f460837f01) (TextureImporter) -> (artifact id: 'a06ef7aca8c8c06fa5bf5204ee54b0ae') in 0.019374566 seconds
2024-05-18T19:05:51.0498075Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/NavigationOverlay On@64.png using Guid(151753cf3d5916d4fbf624668c268675) (TextureImporter) -> (artifact id: '8f719452433ec88093715e64a60c891a') in 0.011844158 seconds
2024-05-18T19:05:51.0693694Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/d_NavigationOverlay@256.png using Guid(f5dd88efd8622424998bf5326c5421eb) (TextureImporter) -> (artifact id: 'e075d954735daca58f39aff8acabcedc') in 0.017057697 seconds
2024-05-18T19:05:51.0796314Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/d_NavigationOverlay On@16.png using Guid(96c9a57d95a712d44978703ea9dd7f4e) (TextureImporter) -> (artifact id: '670162037081436c93758b759e323b60') in 0.010130585 seconds
2024-05-18T19:05:51.1114348Z Start importing Packages/com.unity.ai.navigation/Gizmos/NavMeshModifier Icon.png using Guid(b642c6bf23e624e23ad11b3e1d471932) (TextureImporter) -> (artifact id: '9d62df0fe8f11957e8dc70df245114ae') in 0.027044292 seconds
2024-05-18T19:05:51.1290565Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/NavigationOverlay On@32.png using Guid(f7a3e2b3beab29040bc1a68f0ad0045c) (TextureImporter) -> (artifact id: '85704b8f32f40dc5feb9e3b3f2c21be8') in 0.016185642 seconds
2024-05-18T19:05:51.1473227Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/d_NavigationOverlay On@32.png using Guid(b8a654e77ffbbcd4abdda7fdb70fbb9e) (TextureImporter) -> (artifact id: '75d5d4180493e9838f15a9d8bddfa93f') in 0.016837316 seconds
2024-05-18T19:05:51.1633002Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/NavigationOverlay@32.png using Guid(f9a2f623ba32a844da6de770f5ccf17f) (TextureImporter) -> (artifact id: '0d397e6262b97a040e323175c04d07a5') in 0.014604964 seconds
2024-05-18T19:05:51.1800298Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/d_NavigationOverlay.png using Guid(6a986a181c9bc6043b057a3d15edbaad) (TextureImporter) -> (artifact id: 'de5987d88f5b1bd5781363d888f829ba') in 0.015356776 seconds
2024-05-18T19:05:51.1998269Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/NavigationOverlay@128.png using Guid(1b6bf0e7b03fea94987a73d0cb14781b) (TextureImporter) -> (artifact id: '6cf644f75f7d6480a629e3efa7aa0a0d') in 0.00947393 seconds
2024-05-18T19:05:51.2190912Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/d_NavigationOverlay On@128.png using Guid(5b2a8a1e265e99b4fb8d77061490f397) (TextureImporter) -> (artifact id: '9970f39347f204d0526bd9ec986acfc7') in 0.017830747 seconds
2024-05-18T19:05:51.2322886Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/NavigationOverlay On@16.png using Guid(1c89fbe185cd30b4584ab3d5476807eb) (TextureImporter) -> (artifact id: 'ab7ccb3d7704866d7b7347ecac9de7cb') in 0.011813853 seconds
2024-05-18T19:05:51.2471151Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/d_NavigationOverlay On.png using Guid(5c5ac68c1bc4e104f9e987b9d1da4556) (TextureImporter) -> (artifact id: '9ea9b5486d62dc89e099ebf70372edc1') in 0.011424797 seconds
2024-05-18T19:05:51.2687470Z Start importing Packages/com.unity.ai.navigation/Gizmos/NavMeshModifierVolume Icon.png using Guid(cc7b9475dbddf4f9088d327d6e10ab77) (TextureImporter) -> (artifact id: '5cc714d12d6b4ed5c1cdcdb155f759dd') in 0.021486934 seconds
2024-05-18T19:05:51.2787326Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/NavigationOverlay@64.png using Guid(fc46fceb4d1516544b7f503337211f65) (TextureImporter) -> (artifact id: '796fbb29c6e0613ce738411d4ace5a2e') in 0.007036977 seconds
2024-05-18T19:05:51.2861284Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/d_NavigationOverlay@64.png using Guid(1dacc9e843ef1444fad71e40913ef05c) (TextureImporter) -> (artifact id: '8cdcb5445371836b721ead9d1b006b90') in 0.007080379 seconds
2024-05-18T19:05:51.2939544Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/d_NavigationOverlay@2x.png using Guid(7d5867654fa2bf448b06f384143ceca7) (TextureImporter) -> (artifact id: 'cc39e443b6ac167fe589dc615e34d15e') in 0.007488579 seconds
2024-05-18T19:05:51.3013931Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/d_NavigationOverlay@16.png using Guid(8d8d1929f2279804e8a744d3da25e23b) (TextureImporter) -> (artifact id: 'b2105585c2f8d70cf8a46a983ec45f00') in 0.007080339 seconds
2024-05-18T19:05:51.3090406Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/NavigationOverlay@2x.png using Guid(9d244ceb235342e4c8f308aa1f71be7e) (TextureImporter) -> (artifact id: '817acdc2f86bdd8bb8423a0d6f018a76') in 0.007299296 seconds
2024-05-18T19:05:51.3166439Z Start importing Packages/com.unity.ai.navigation/EditorResources/Overlay/d_NavigationOverlay@32.png using Guid(6f3c566cd9f63c9408d201ea50b51444) (TextureImporter) -> (artifact id: '546c4acdd3a25f7abe86b5cf97ef5dde') in 0.007184572 seconds
2024-05-18T19:05:51.3186190Z Start importing Packages/com.unity.sysroot.linux-x86_64/CHANGELOG.md using Guid(d079a46bd2b13441ebad731de9b00dbe) (TextScriptImporter) -> (artifact id: 'c4607107ff4cf081db02dc2756c94129') in 0.001636551 seconds
2024-05-18T19:05:51.3201914Z Start importing Packages/com.unity.modules.ai/package.json using Guid(f0f13f2ab3d6d13cfc6e4656824bfca8) (PackageManifestImporter) -> (artifact id: '9a15ef4c7d740a6247c8bda30496e986') in 0.001355297 seconds
2024-05-18T19:05:51.3216813Z Start importing Packages/com.unity.sysroot/README.md using Guid(51f3a1b7b38fe39689977681fe22df32) (TextScriptImporter) -> (artifact id: '3efb6bc1b4512e57cb75f77d6cbb3a45') in 0.001208894 seconds
2024-05-18T19:05:51.3232417Z Start importing Packages/com.unity.sysroot.linux-x86_64/package.json using Guid(82b3e10190ae04847a3432984fd63265) (PackageManifestImporter) -> (artifact id: '1c1c10019c4da06041e920b0b61dbf3e') in 0.00124988 seconds
2024-05-18T19:05:51.3247362Z Start importing Packages/com.unity.modules.accessibility/package.json using Guid(43674d438e19b89d7fe6af07234f3252) (PackageManifestImporter) -> (artifact id: '6eaa56c066222c8633519f8c8a223da4') in 0.001215656 seconds
2024-05-18T19:05:51.3262483Z Start importing Packages/com.unity.sysroot/package.json using Guid(0445a7983a983d97f848d19d5eeebf7b) (PackageManifestImporter) -> (artifact id: 'eda02cf0d2845813ca214b64495f49d8') in 0.001216788 seconds
2024-05-18T19:05:51.3280434Z Start importing Packages/com.unity.toolchain.linux-x86_64/README.md using Guid(e476833ad0eb3d6afa792f32246c42d2) (TextScriptImporter) -> (artifact id: '4d09bf750831264b8a806e7ce043bcc7') in 0.001236695 seconds
2024-05-18T19:05:51.3298850Z Start importing Packages/com.unity.toolchain.linux-x86_64/LICENSE.md using Guid(25c7823ec1068a4d49626b816b321aab) (TextScriptImporter) -> (artifact id: '511404291ad90bc073a8141badab28ec') in 0.001220915 seconds
2024-05-18T19:05:51.3311214Z Start importing Packages/com.unity.sysroot.linux-x86_64/README.md using Guid(169a1eb50937145adaa82ac869cadee2) (TextScriptImporter) -> (artifact id: '9742991bfd2d9246bb0d515136ac887c') in 0.001278223 seconds
2024-05-18T19:05:51.3355344Z Start importing Packages/com.unity.sysroot/Third Party Notices.md using Guid(77480111a80ad46e7b0d10da3fd3a092) (TextScriptImporter) -> (artifact id: 'f4530012a9ff7f6d27bb4971ccb4ac20') in 0.001189858 seconds
2024-05-18T19:05:51.3367649Z Start importing Packages/com.unity.toolchain.linux-x86_64/package.json using Guid(b75d9a0470b1635b1a19f29fe9d743da) (PackageManifestImporter) -> (artifact id: '0ec4e417e3ed2912a26e4647d25e5c48') in 0.001136989 seconds
2024-05-18T19:05:51.3371939Z Start importing Packages/com.unity.sysroot/LICENSE.md using Guid(e76167c495d53ba6abcbb8df07973457) (TextScriptImporter) -> (artifact id: 'fc63e4f5920bb188a05339848d20eb0d') in 0.001194948 seconds
2024-05-18T19:05:51.3384078Z Start importing Packages/com.unity.toolchain.linux-x86_64/ValidationConfig.json using Guid(19ec794be6c353ba2a3ca871b1793808) (TextScriptImporter) -> (artifact id: '5314c671f24725af6a03ee749b2a132e') in 0.001196952 seconds
2024-05-18T19:05:51.3444232Z Start importing Packages/com.unity.sysroot/CHANGELOG.md using Guid(6903637d170abe311a972b9d76142805) (TextScriptImporter) -> (artifact id: '604cc7a38cd683c76dca72b33e2413c1') in 0.001194196 seconds
2024-05-18T19:05:51.3448639Z Start importing Packages/com.unity.toolchain.linux-x86_64/Third Party Notices.md using Guid(fb6d64d4cca2e56778082a1c7685fbac) (TextScriptImporter) -> (artifact id: '3430153244c5e628412b8b68bede319e') in 0.001210877 seconds
2024-05-18T19:05:51.3452639Z Start importing Packages/com.unity.ai.navigation/package.json using Guid(fbee67e09f48e4652bfa085460c895c7) (PackageManifestImporter) -> (artifact id: '58676f04e607457c3dc7201a62e1ad4e') in 0.00127154 seconds
2024-05-18T19:05:51.3457077Z Start importing Packages/com.unity.toolchain.linux-x86_64/CHANGELOG.md using Guid(ac31dd48a6c63fbdb8593e0542545f0d) (TextScriptImporter) -> (artifact id: '092dda6cd7571624fc74daa2ec077171') in 0.001387537 seconds
2024-05-18T19:05:51.3461460Z Start importing Packages/com.unity.ai.navigation/CHANGELOG.md using Guid(ccdfde25179bd45acb7145793b3b87f8) (TextScriptImporter) -> (artifact id: '4dc399065c92734ea591be9073777a40') in 0.001320381 seconds
2024-05-18T19:05:51.3504258Z Start importing Packages/com.unity.sysroot.linux-x86_64/LICENSE.md using Guid(6e81a17100c6f4c2a9256fd0e4e3915c) (TextScriptImporter) -> (artifact id: '924e33740b72c45fc4926a0b979d5d5f') in 0.002807193 seconds
2024-05-18T19:05:51.3508633Z Start importing Packages/com.unity.ai.navigation/README.md using Guid(6fc2b2cf518e540319637f5c5c573d3a) (TextScriptImporter) -> (artifact id: '2c3ac1376e6f81d67fb0941f5ff6e62b') in 0.001162287 seconds
2024-05-18T19:05:51.3512906Z Start importing Packages/com.unity.ai.navigation/LICENSE.md using Guid(af8f9a7f066204789819c6a616afe2c0) (TextScriptImporter) -> (artifact id: '260deac36de97e939da085ccb7c6c249') in 0.001573203 seconds
2024-05-18T19:05:51.3691870Z Start importing Packages/com.unity.ai.navigation/Editor/ConversionSystem/converter_widget.uss using Guid(63cb84b97408b4d25a6925daccffcd22) (ScriptedImporter) -> (artifact id: 'a0ab747045d7a1b8ea3c94d9f92b3596') in 0.01664655 seconds
2024-05-18T19:05:51.4580928Z Start importing Packages/com.unity.ai.navigation/Editor/ConversionSystem/converter_editor.uss using Guid(3eb99c80b411349188e1e5167887ac6c) (ScriptedImporter) -> (artifact id: 'dd82f80f72afb06a2841206fdbbc0cbc') in 0.08772708 seconds
2024-05-18T19:05:51.6272988Z Start importing Packages/com.unity.ai.navigation/Editor/ConversionSystem/converter_widget_item.uxml using Guid(d6de7697d63d64fabbfb31425d93541e) (ScriptedImporter) -> (artifact id: '267e66900127fa4761b49ad0814dfcb7') in 0.167905368 seconds
2024-05-18T19:05:51.7131241Z Start importing Packages/com.unity.ai.navigation/Editor/ConversionSystem/converter_widget.uxml using Guid(aaa3e510761864dac9b71f85526490d6) (ScriptedImporter) -> (artifact id: '0274afc6d61c4816b0bbad4b519c36f1') in 0.081829126 seconds
2024-05-18T19:05:51.7797538Z Start importing Packages/com.unity.ai.navigation/Editor/ConversionSystem/converter_editor.uxml using Guid(cd1eb3c3c695c494d855ea678fe7395b) (ScriptedImporter) -> (artifact id: '2421ea2c21ce0bd11962ba1d7135a38b') in 0.065401202 seconds
2024-05-18T19:05:51.9057784Z Launched and connected shader compiler UnityShaderCompiler after 0.05 seconds
2024-05-18T19:05:53.2444172Z Loading style catalogs (6)
2024-05-18T19:05:53.2445286Z    StyleSheets/Extensions/base/common.uss
2024-05-18T19:05:53.2446716Z    UIPackageResources/StyleSheets/Default/Variables/Public/common.uss
2024-05-18T19:05:53.2448082Z    StyleSheets/Northstar/common.uss
2024-05-18T19:05:53.2449136Z    StyleSheets/Extensions/fonts/inter.uss
2024-05-18T19:05:53.2450384Z    StyleSheets/Extensions/base/dark.uss
2024-05-18T19:05:53.2451801Z    UIPackageResources/StyleSheets/Default/Northstar/Palette/dark.uss
2024-05-18T19:05:53.7655075Z Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins.
2024-05-18T19:05:53.7687246Z Preloading 0 native plugins for Editor in 0.00 ms.
2024-05-18T19:05:53.7709849Z Asset Pipeline Refresh (id=f7ff6169d46f33caa88a7b41822526f6): Total: 22.724 seconds - Initiated by InitialRefreshV2(ForceSynchronousImport)
2024-05-18T19:05:53.7712643Z    Summary:
2024-05-18T19:05:53.7713878Z        Imports: total=127 (actual=127, local cache=0, cache server=0)
2024-05-18T19:05:53.7715321Z        Asset DB Process Time: managed=20 ms, native=2742 ms
2024-05-18T19:05:53.7716660Z        Asset DB Callback time: managed=605 ms, native=1675 ms
2024-05-18T19:05:53.7718289Z        Scripting: domain reloads=1, domain reload time=847 ms, compile time=16819 ms, other=11 ms
2024-05-18T19:05:53.7720022Z        Project Asset Count: scripts=65, non-scripts=62
2024-05-18T19:05:53.7721366Z        Asset File Changes: new=187, changed=187, moved=0, deleted=0
2024-05-18T19:05:53.7722570Z        Scan Filter Count: 1
2024-05-18T19:05:53.7723583Z    InvokeCustomDependenciesCallbacks: 0.007ms
2024-05-18T19:05:53.7724744Z    InvokePackagesCallback: 322.225ms
2024-05-18T19:05:53.7725812Z    ApplyChangesToAssetFolders: 0.118ms
2024-05-18T19:05:53.7726804Z    Scan: 109.619ms
2024-05-18T19:05:53.7727681Z    OnSourceAssetsModified: 1.778ms
2024-05-18T19:05:53.7728829Z    CategorizeAssetsWithTransientArtifact: 0.571ms
2024-05-18T19:05:53.7730442Z    ProcessAssetsWithTransientArtifactChanges: 3.232ms
2024-05-18T19:05:53.7731659Z    CategorizeAssets: 1.406ms
2024-05-18T19:05:53.7732985Z    ImportOutOfDateAssets: 2568.741ms (-15572.851ms without children)
2024-05-18T19:05:53.7745823Z        ImportManagerImport: 1315.652ms (90.504ms without children)
2024-05-18T19:05:53.7747075Z            ImportInProcess: 1224.687ms
2024-05-18T19:05:53.7812620Z            UpdateCategorizedAssets: 0.461ms
2024-05-18T19:05:53.7813853Z        CompileScripts: 16819.234ms
2024-05-18T19:05:53.7814750Z        ReloadNativeAssets: 0.001ms
2024-05-18T19:05:53.7815652Z        UnloadImportedAssets: 1.471ms
2024-05-18T19:05:53.7816581Z        ReloadImportedAssets: 0.027ms
2024-05-18T19:05:53.7817674Z        EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.037ms
2024-05-18T19:05:53.7818834Z        InitializingProgressBar: 0.008ms
2024-05-18T19:05:53.7820031Z        PostProcessAllAssetNotificationsAddChangedAssets: 0.001ms
2024-05-18T19:05:53.7821253Z        OnDemandSchedulerStart: 5.161ms
2024-05-18T19:05:53.7822250Z    PostProcessAllAssets: 1975.902ms
2024-05-18T19:05:53.7823125Z    Hotreload: 7.340ms
2024-05-18T19:05:53.7824092Z    GatherAllCurrentPrimaryArtifactRevisions: 0.007ms
2024-05-18T19:05:53.7825188Z    UnloadStreamsBegin: 1.861ms
2024-05-18T19:05:53.7826090Z    PersistCurrentRevisions: 0.231ms
2024-05-18T19:05:53.7827001Z    UnloadStreamsEnd: 0.011ms
2024-05-18T19:05:53.7827901Z    GenerateScriptTypeHashes: 0.627ms
2024-05-18T19:05:53.7828801Z    Untracked: 17731.174ms
2024-05-18T19:05:53.7829289Z 
2024-05-18T19:05:53.7829733Z Application.AssetDatabase Initial Refresh End
2024-05-18T19:05:53.8025487Z Scanning for USB devices : 0.172ms
2024-05-18T19:05:53.8134314Z Initializing Unity extensions:
2024-05-18T19:05:53.9493690Z [Licensing::Client] Successfully resolved entitlements
2024-05-18T19:05:53.9587757Z UpdateMenuTitleForLanguage: 10
2024-05-18T19:05:53.9607863Z [MODES] ModeService[none].Initialize
2024-05-18T19:05:53.9617751Z [MODES] ModeService[none].LoadModes
2024-05-18T19:05:53.9832423Z [MODES] Loading mode Default (0) for mode-current-id-BlankProject
2024-05-18T19:05:54.1290056Z Unloading 6 Unused Serialized files (Serialized files now loaded: 0)
2024-05-18T19:05:54.1379132Z Unloading 80 unused Assets / (305.7 KB). Loaded Objects now: 702.
2024-05-18T19:05:54.1380630Z Memory consumption went from 189.6 MB to 189.3 MB.
2024-05-18T19:05:54.1386069Z Total: 8.085201 ms (FindLiveObjects: 0.068528 ms CreateObjectMapping: 0.008646 ms MarkObjects: 7.680207 ms  DeleteObjects: 0.327120 ms)
2024-05-18T19:05:54.1387635Z 
2024-05-18T19:05:54.1461506Z Batchmode quit successfully invoked - shutting down!
2024-05-18T19:05:54.2177415Z Curl error 42: Callback aborted
2024-05-18T19:05:54.2903504Z [Licensing::IpcConnector] License Notification channel disconnected successfully.
2024-05-18T19:05:54.2910830Z [Licensing::IpcConnector] License Client channel disconnected successfully.
2024-05-18T19:05:54.3139385Z AcceleratorClientConnectionCallback - disconnected - :0
2024-05-18T19:05:54.3225014Z info: Microsoft.Hosting.Lifetime[0]
2024-05-18T19:05:54.3226343Z       Application is shutting down...
2024-05-18T19:05:57.3221319Z Cleanup mono
2024-05-18T19:05:57.3685410Z debugger-agent: Unable to listen on 39
2024-05-18T19:05:57.3742129Z [Performance] Application.InitializeProject                                                                                  :        1 samples, Peak.  76.2 s (1.0x), Avg.  76.2 s, Total. 76.24 s (89.7%)
2024-05-18T19:05:57.3744872Z [Performance] Application.PackageManager.StartServer                                                                         :        1 samples, Peak.  2.31 ms (1.0x), Avg.  2.31 ms, Total. 2.307 ms (0.0%)
2024-05-18T19:05:57.3747473Z [Performance] Application.AcquireProjectLock                                                                                 :        1 samples, Peak.  1.72 ms (1.0x), Avg.  1.72 ms, Total. 1.720 ms (0.0%)
2024-05-18T19:05:57.3750514Z [Performance] Application.InitializeEngineNoGraphics                                                                         :        1 samples, Peak.   205 ms (1.0x), Avg.   205 ms, Total. 205.4 ms (0.2%)
2024-05-18T19:05:57.3758786Z [Performance] Application.PackageManager.Initialize                                                                          :        1 samples, Peak.   270 ms (1.0x), Avg.   270 ms, Total. 270.3 ms (0.3%)
2024-05-18T19:05:57.3761393Z [Performance] Connecting to Package Manager                                                                                  :       28 samples, Peak.  23.4 us (13.6x), Avg.  1.72 us, Total. 48.03 us (0.0%)
2024-05-18T19:05:57.3764100Z [Performance] PackageManager::Api::RunRequestSynchronously                                                                   :       35 samples, Peak.  6.50 us (3.2x), Avg.  2.04 us, Total. 71.55 us (0.0%)
2024-05-18T19:05:57.3766882Z [Performance] Application.EngineGraphics.Initialize                                                                          :        1 samples, Peak.  62.8 ms (1.0x), Avg.  62.8 ms, Total. 62.82 ms (0.1%)
2024-05-18T19:05:57.3769287Z [Performance] Application.GI.Initialize                                                                                      :        1 samples, Peak.  19.1 ms (1.0x), Avg.  19.1 ms, Total. 19.14 ms (0.0%)
2024-05-18T19:05:57.3771743Z [Performance] Application.LoadAllDefaultResourcesFromEditor                                                                  :        1 samples, Peak.  2.35 ms (1.0x), Avg.  2.35 ms, Total. 2.347 ms (0.0%)
2024-05-18T19:05:57.3774744Z [Performance] Application.LoadMonoAssemblies                                                                                 :        1 samples, Peak.  51.1 s (1.0x), Avg.  51.1 s, Total. 51.12 s (60.1%)
2024-05-18T19:05:57.3777277Z [Performance] RestoreManagedReferences                                                                                       :        2 samples, Peak.   231 ms (2.0x), Avg.   116 ms, Total. 231.4 ms (0.3%)
2024-05-18T19:05:57.3779801Z [Performance] EditorResources.Load                                                                                           :      102 samples, Peak.  79.8 ms (52.4x), Avg.  1.52 ms, Total. 155.4 ms (0.2%)
2024-05-18T19:05:57.3782293Z [Performance] Package.AsyncRequest                                                                                           :      981 samples, Peak.  20.3 ms (899.2x), Avg.  22.6 us, Total. 22.13 ms (0.0%)
2024-05-18T19:05:57.3784833Z [Performance] VersionControl.Task.Wait                                                                                       :        1 samples, Peak.  8.61 us (1.0x), Avg.  8.61 us, Total. 8.606 us (0.0%)
2024-05-18T19:05:57.3788004Z [Performance] AssemblyReloadEvents.afterAssemblyReload: UnityEditor.SceneTemplate.SceneTemplateService.AfterAssemblyReload   :        2 samples, Peak.  10.8 ms (1.9x), Avg.  5.84 ms, Total. 11.69 ms (0.0%)
2024-05-18T19:05:57.3791348Z [Performance] ProcessService.EditorAfterLoadAllAssemblies                                                                    :        2 samples, Peak.  1.07 ms (1.3x), Avg.   797 us, Total. 1.594 ms (0.0%)
2024-05-18T19:05:57.3794392Z [Performance] Application.ReadLicenseInfo                                                                                    :        1 samples, Peak.  12.0 ms (1.0x), Avg.  12.0 ms, Total. 11.95 ms (0.0%)
2024-05-18T19:05:57.3796880Z [Performance] Application.InitialRefresh                                                                                     :        1 samples, Peak.  22.7 s (1.0x), Avg.  22.7 s, Total. 22.73 s (26.7%)
2024-05-18T19:05:57.3799373Z [Performance] AssetDatabase.InitialRefresh                                                                                   :        1 samples, Peak.  22.7 s (1.0x), Avg.  22.7 s, Total. 22.73 s (26.7%)
2024-05-18T19:05:57.3801923Z [Performance] ShaderImporter.SourceAssetModified                                                                             :        1 samples, Peak.  4.47 us (1.0x), Avg.  4.47 us, Total. 4.469 us (0.0%)
2024-05-18T19:05:57.3804728Z [Performance] ShaderIncludeImporter.SourceAssetModified                                                                      :        1 samples, Peak.  14.9 us (1.0x), Avg.  14.9 us, Total. 14.95 us (0.0%)
2024-05-18T19:05:57.3807270Z [Performance] Compiling Scripts                                                                                              :        1 samples, Peak.  16.8 s (1.0x), Avg.  16.8 s, Total. 16.82 s (19.8%)
2024-05-18T19:05:57.3810434Z [Performance] AssemblyReloadEvents.beforeAssemblyReload: UnityEditor.SceneTemplate.SceneTemplateService.BeforeAssemblyReload :        1 samples, Peak.  1.15 ms (1.0x), Avg.  1.15 ms, Total. 1.152 ms (0.0%)
2024-05-18T19:05:57.3815009Z [Performance] PresetManagerPostProcessor.OnPreprocessAsset                                                                   :      127 samples, Peak.  7.52 ms (93.5x), Avg.  80.5 us, Total. 10.22 ms (0.0%)
2024-05-18T19:05:57.3818090Z [Performance] CancelSplashScreenOnAssetChange.OnPreprocessAsset                                                              :      127 samples, Peak.   165 us (36.5x), Avg.  4.54 us, Total. 576.1 us (0.0%)
2024-05-18T19:05:57.3821260Z [Performance] DidReloadScriptsEditorMenuExtensions.FindAndCloseAllContextMenus                                               :        1 samples, Peak.  4.24 ms (1.0x), Avg.  4.24 ms, Total. 4.240 ms (0.0%)
2024-05-18T19:05:57.3824464Z [Performance] DidReloadScriptsAdvancedDropdownWindow.OnScriptReload                                                          :        1 samples, Peak.   299 us (1.0x), Avg.   299 us, Total. 298.7 us (0.0%)
2024-05-18T19:05:57.3827257Z [Performance] TextureImporter.Import                                                                                         :       34 samples, Peak.  31.4 ms (4.7x), Avg.  6.65 ms, Total. 226.1 ms (0.3%)
2024-05-18T19:05:57.3829757Z [Performance] AssetDatabase.ImportAssets                                                                                     :        3 samples, Peak.   601 ns (1.5x), Avg.   401 ns, Total. 1.202 us (0.0%)
2024-05-18T19:05:57.3832586Z [Performance] WindowAssetPostprocessingWatcher_Internal.OnPostprocessAllAssets                                               :        2 samples, Peak.  9.64 ms (1.0x), Avg.  9.53 ms, Total. 19.06 ms (0.0%)
2024-05-18T19:05:57.3835592Z [Performance] BuilderAssetPostprocessor.OnPostprocessAllAssets                                                               :        2 samples, Peak.  25.7 ms (1.0x), Avg.  25.7 ms, Total. 51.46 ms (0.1%)
2024-05-18T19:05:57.3838566Z [Performance] ArtifactBrowserPostProcessor.OnPostprocessAllAssets                                                            :        2 samples, Peak.   964 us (1.0x), Avg.   960 us, Total. 1.920 ms (0.0%)
2024-05-18T19:05:57.3841300Z [Performance] AssetEvents.OnPostprocessAllAssets                                                                             :        4 samples, Peak.   307 us (1.5x), Avg.   202 us, Total. 809.4 us (0.0%)
2024-05-18T19:05:57.3844300Z [Performance] AudioContainerPostProcessor.OnPostprocessAllAssets                                                             :        2 samples, Peak.   152 us (1.0x), Avg.   148 us, Total. 296.7 us (0.0%)
2024-05-18T19:05:57.3847262Z [Performance] AudioMixerPostprocessor.OnPostprocessAllAssets                                                                 :        2 samples, Peak.   514 us (1.0x), Avg.   511 us, Total. 1.021 ms (0.0%)
2024-05-18T19:05:57.3850202Z [Performance] StyleCatalogPostProcessor.OnPostprocessAllAssets                                                               :        2 samples, Peak.   273 ms (1.0x), Avg.   273 ms, Total. 547.0 ms (0.6%)
2024-05-18T19:05:57.3852857Z [Performance] BuildCatalog                                                                                                   :        1 samples, Peak.   267 ms (1.0x), Avg.   267 ms, Total. 266.8 ms (0.3%)
2024-05-18T19:05:57.3857065Z [Performance] ModelImporterPostProcessor.OnPostprocessAllAssets                                                              :        2 samples, Peak.  2.96 ms (1.0x), Avg.  2.95 ms, Total. 5.905 ms (0.0%)
2024-05-18T19:05:57.3860054Z [Performance] AssetDatabaseProxy.OnPostprocessAllAssets                                                                      :        2 samples, Peak.   147 ms (1.0x), Avg.   147 ms, Total. 294.8 ms (0.3%)
2024-05-18T19:05:57.3863036Z [Performance] RetainedModeAssetPostprocessor.OnPostprocessAllAssets                                                          :        2 samples, Peak.  97.1 ms (1.0x), Avg.  97.1 ms, Total. 194.1 ms (0.2%)
2024-05-18T19:05:57.3866046Z [Performance] AssetChangedListener.OnPostprocessAllAssets                                                                    :        2 samples, Peak.  2.58 ms (1.0x), Avg.  2.57 ms, Total. 5.149 ms (0.0%)
2024-05-18T19:05:57.3868872Z [Performance] SpeedTreePostProcessor.OnPostprocessAllAssets                                                                  :        2 samples, Peak.   212 us (1.0x), Avg.   210 us, Total. 419.6 us (0.0%)
2024-05-18T19:05:57.3871845Z [Performance] TerrainToolbarOverlayPostProcessor.OnPostprocessAllAssets                                                      :        2 samples, Peak.  5.01 ms (1.0x), Avg.  5.00 ms, Total. 10.000 ms (0.0%)
2024-05-18T19:05:57.3874596Z [Performance] TextAssetPostProcessor.OnPostprocessAllAssets                                                                  :        2 samples, Peak.  1.90 ms (1.0x), Avg.  1.89 ms, Total. 3.789 ms (0.0%)
2024-05-18T19:05:57.3877070Z [Performance] SyncVS.PostprocessSyncProject                                                                                  :        1 samples, Peak.  4.11 ms (1.0x), Avg.  4.11 ms, Total. 4.106 ms (0.0%)
2024-05-18T19:05:57.3879950Z [Performance] EditorApplication.projectChanged: UnityEditor.Audio.MixerEffectDefinitionReloader.OnProjectChanged             :        1 samples, Peak.   611 us (1.0x), Avg.   611 us, Total. 610.6 us (0.0%)
2024-05-18T19:05:57.3883115Z [Performance] Application.ImportPackagesAndSetTemplateWhenCreatingProject                                                    :        1 samples, Peak.  27.2 ms (1.0x), Avg.  27.2 ms, Total. 27.20 ms (0.0%)
2024-05-18T19:05:57.3886059Z [Performance] Application.SyncCurrentColorSpace                                                                              :        1 samples, Peak.   711 ns (1.0x), Avg.   711 ns, Total. 711.0 ns (0.0%)
2024-05-18T19:05:57.3888699Z [Performance] Application.OnUsbDevicesChanged                                                                                :        1 samples, Peak.   890 us (1.0x), Avg.   890 us, Total. 890.4 us (0.0%)
2024-05-18T19:05:57.3891331Z [Performance] Application.AssetDatabase.SaveAssets                                                                           :        1 samples, Peak.  10.2 ms (1.0x), Avg.  10.2 ms, Total. 10.22 ms (0.0%)
2024-05-18T19:05:57.3894452Z [Performance] BuilderAssetModificationProcessor.OnWillSaveAssets                                                             :        2 samples, Peak.   565 us (2.0x), Avg.   286 us, Total. 572.7 us (0.0%)
2024-05-18T19:05:57.3897628Z [Performance] TerrainModificationProcessor.OnWillSaveAssets                                                                  :        2 samples, Peak.  1.10 ms (2.0x), Avg.   553 us, Total. 1.106 ms (0.0%)
2024-05-18T19:05:57.3900618Z [Performance] AudioContainerModificationProcessor.OnWillSaveAssets                                                           :        2 samples, Peak.   105 us (1.9x), Avg.  53.8 us, Total. 107.6 us (0.0%)
2024-05-18T19:05:57.3903509Z [Performance] Application.AssetInstanceCacheUpdate                                                                           :        1 samples, Peak.   350 ns (1.0x), Avg.   350 ns, Total. 350.0 ns (0.0%)
2024-05-18T19:05:57.3906346Z [Performance] Application.UnityExtensions.Initialize                                                                         :        1 samples, Peak.  1.18 ms (1.0x), Avg.  1.18 ms, Total. 1.182 ms (0.0%)
2024-05-18T19:05:57.3909014Z [Performance] CodeEditorProjectSync.SyncEditorProject                                                                        :        1 samples, Peak.  76.8 us (1.0x), Avg.  76.8 us, Total. 76.78 us (0.0%)
2024-05-18T19:05:57.3911601Z [Performance] Application.ExecuteStartups                                                                                    :        1 samples, Peak.   122 ms (1.0x), Avg.   122 ms, Total. 122.1 ms (0.1%)
2024-05-18T19:05:57.3914059Z [Performance] Menu.RegisterMenuInterface                                                                                     :       26 samples, Peak.   841 ns (4.5x), Avg.   188 ns, Total. 4.878 us (0.0%)
2024-05-18T19:05:57.3916488Z [Performance] Gizmo.RebuildRenderers                                                                                         :        1 samples, Peak.   122 ms (1.0x), Avg.   122 ms, Total. 121.9 ms (0.1%)
2024-05-18T19:05:57.3918920Z [Performance] Gizmo.AddGizmoRenderers                                                                                        :       46 samples, Peak.  2.28 ms (26.0x), Avg.  87.5 us, Total. 4.026 ms (0.0%)
2024-05-18T19:05:57.3921479Z [Performance] Application.editorInitializingProject                                                                          :        1 samples, Peak.  16.4 ms (1.0x), Avg.  16.4 ms, Total. 16.37 ms (0.0%)
2024-05-18T19:05:57.3924074Z [Performance] Application.InitializeMenu                                                                                     :        1 samples, Peak.  96.0 ms (1.0x), Avg.  96.0 ms, Total. 95.98 ms (0.1%)
2024-05-18T19:05:57.3926183Z [Performance] Menu.RebuildAll                                                                                                :        1 samples, Peak.  95.9 ms (1.0x), Avg.  95.9 ms, Total. 95.95 ms (0.1%)
2024-05-18T19:05:57.3928322Z [Performance] Menu.BuildRegisteredMenuInterfaces                                                                             :        1 samples, Peak.  93.3 ms (1.0x), Avg.  93.3 ms, Total. 93.31 ms (0.1%)
2024-05-18T19:05:57.3930700Z [Performance] Menu.FilterMenuItem                                                                                            :      391 samples, Peak.  25.2 ms (387.6x), Avg.  64.9 us, Total. 25.37 ms (0.0%)
2024-05-18T19:05:57.3933121Z [Performance] UpdateAllMenus                                                                                                 :        1 samples, Peak.   722 us (1.0x), Avg.   722 us, Total. 722.4 us (0.0%)
2024-05-18T19:05:57.3936698Z [Performance] EditorSceneManager.sceneClosing: UnityEditor.SceneVisibilityManager.EditorSceneManagerOnSceneClosing           :        1 samples, Peak.   311 us (1.0x), Avg.   311 us, Total. 311.3 us (0.0%)
2024-05-18T19:05:57.3940052Z [Performance] GUIView.RepaintAll.PlayerLoopController                                                                        :        1 samples, Peak.   521 ns (1.0x), Avg.   521 ns, Total. 521.0 ns (0.0%)
2024-05-18T19:05:57.3943607Z [Performance] EditorSceneManager.newSceneCreated: UnityEditor.SceneTemplate.SceneTemplateService.OnNewSceneCreated           :        1 samples, Peak.   302 us (1.0x), Avg.   302 us, Total. 301.7 us (0.0%)
2024-05-18T19:05:57.3947491Z [Performance] EditorSceneManager.newSceneCreated: UnityEditor.SceneVisibilityManager.EditorSceneManagerOnNewSceneCreated     :        1 samples, Peak.   216 us (1.0x), Avg.   216 us, Total. 216.3 us (0.0%)
2024-05-18T19:05:57.3951192Z [Performance] EditorSceneManager.newSceneCreated: UnityEditor.SceneManagement.StageNavigationManager.OnNewSceneCreated       :        1 samples, Peak.  76.2 us (1.0x), Avg.  76.2 us, Total. 76.24 us (0.0%)
2024-05-18T19:05:57.3954387Z [Performance] Application.InvokeFinishedLoadingProject                                                                       :        1 samples, Peak.   765 us (1.0x), Avg.   765 us, Total. 765.1 us (0.0%)
2024-05-18T19:05:57.3957334Z [Performance] ProcessService.OnProjectLoaded                                                                                 :        1 samples, Peak.  58.3 us (1.0x), Avg.  58.3 us, Total. 58.28 us (0.0%)
2024-05-18T19:05:57.3960250Z [Performance] EditorApplication.quitting: callback in UnityEditor.TextCore.Text.EditorEventCallbacks                         :        1 samples, Peak.  6.48 ms (1.0x), Avg.  6.48 ms, Total. 6.480 ms (0.0%)
2024-05-18T19:05:57.3963102Z [Performance] Application.Shutdown.PauseProfilerSession                                                                      :        1 samples, Peak.  28.7 us (1.0x), Avg.  28.7 us, Total. 28.70 us (0.0%)
2024-05-18T19:05:57.3965821Z [Performance] Application.Shutdown.PauseAssetImportWorkers                                                                   :        1 samples, Peak.  88.6 us (1.0x), Avg.  88.6 us, Total. 88.57 us (0.0%)
2024-05-18T19:05:57.3968517Z [Performance] Application.Shutdown.SaveAssets                                                                                :        1 samples, Peak.  1.74 ms (1.0x), Avg.  1.74 ms, Total. 1.744 ms (0.0%)
2024-05-18T19:05:57.3971125Z [Performance] Application.Shutdown.CleanupRenderPipeline                                                                     :        1 samples, Peak.  2.41 us (1.0x), Avg.  2.41 us, Total. 2.405 us (0.0%)
2024-05-18T19:05:57.3994672Z [Performance] Application.Shutdown.StopPreloadManager                                                                        :        1 samples, Peak.  10.1 ms (1.0x), Avg.  10.1 ms, Total. 10.07 ms (0.0%)
2024-05-18T19:05:57.3997505Z [Performance] Application.Shutdown.DestroyWorld                                                                              :        1 samples, Peak.   258 us (1.0x), Avg.   258 us, Total. 258.4 us (0.0%)
2024-05-18T19:05:57.4000373Z [Performance] Application.Shutdown.CleanupAfterLoad                                                                          :        1 samples, Peak.  10.9 ms (1.0x), Avg.  10.9 ms, Total. 10.92 ms (0.0%)
2024-05-18T19:05:57.4003178Z [Performance] Application.Shutdown.Progress                                                                                  :        1 samples, Peak.  9.42 us (1.0x), Avg.  9.42 us, Total. 9.418 us (0.0%)
2024-05-18T19:05:57.4005930Z [Performance] Application.Shutdown.GICleanupManagers                                                                         :        1 samples, Peak.  1.16 ms (1.0x), Avg.  1.16 ms, Total. 1.163 ms (0.0%)
2024-05-18T19:05:57.4008718Z [Performance] Application.Shutdown.MenuCleanupClass                                                                          :        1 samples, Peak.  74.7 us (1.0x), Avg.  74.7 us, Total. 74.68 us (0.0%)
2024-05-18T19:05:57.4011460Z [Performance] Application.Shutdown.ADBSaveStateBeforeShutdown                                                                :        1 samples, Peak.  5.35 us (1.0x), Avg.  5.35 us, Total. 5.350 us (0.0%)
2024-05-18T19:05:57.4023605Z [Performance] Application.Shutdown.RemoteShutdown                                                                            :        1 samples, Peak.   701 ns (1.0x), Avg.   701 ns, Total. 701.0 ns (0.0%)
2024-05-18T19:05:57.4026098Z [Performance] Application.Shutdown.CleanupVCProvider                                                                         :        1 samples, Peak.  11.1 us (1.0x), Avg.  11.1 us, Total. 11.14 us (0.0%)
2024-05-18T19:05:57.4028471Z [Performance] Application.Shutdown.InputShutdown                                                                             :        1 samples, Peak.  3.46 us (1.0x), Avg.  3.46 us, Total. 3.457 us (0.0%)
2024-05-18T19:05:57.4030843Z [Performance] Application.Shutdown.GizmoManagerDestroy                                                                       :        1 samples, Peak.  1.61 ms (1.0x), Avg.  1.61 ms, Total. 1.612 ms (0.0%)
2024-05-18T19:05:57.4033464Z [Performance] Application.Shutdown.ProfilerSession                                                                           :        1 samples, Peak.   160 us (1.0x), Avg.   160 us, Total. 160.0 us (0.0%)
2024-05-18T19:05:57.4036002Z [Performance] Application.Shutdown.ReleaseGfxWindowOnAllGUIViews                                                             :        1 samples, Peak.  2.93 us (1.0x), Avg.  2.93 us, Total. 2.925 us (0.0%)
2024-05-18T19:05:57.4038616Z [Performance] Application.Shutdown.CleanupEngine                                                                             :        1 samples, Peak.   132 ms (1.0x), Avg.   132 ms, Total. 132.0 ms (0.2%)
2024-05-18T19:05:57.4041062Z [Performance] Application.Shutdown.CleanupAssetDatabase                                                                      :        1 samples, Peak.  2.08 ms (1.0x), Avg.  2.08 ms, Total. 2.076 ms (0.0%)
2024-05-18T19:05:57.4043627Z [Performance] Application.Shutdown.ScriptCompilationCleanUp                                                                  :        1 samples, Peak.  3.00 s (1.0x), Avg.  3.00 s, Total. 3.004 s (3.5%)
2024-05-18T19:05:57.4046164Z [Performance] Application.Shutdown.DestroyJobSystem                                                                          :        1 samples, Peak.   204 us (1.0x), Avg.   204 us, Total. 204.3 us (0.0%)
2024-05-18T19:05:57.4048639Z [Performance] Application.Shutdown.CleanupPersistentManager                                                                  :        1 samples, Peak.   814 us (1.0x), Avg.   814 us, Total. 814.2 us (0.0%)
2024-05-18T19:05:57.4051199Z [Performance] Application.Shutdown.CleanupAsyncReadManager                                                                   :        1 samples, Peak.   124 us (1.0x), Avg.   124 us, Total. 123.6 us (0.0%)
2024-05-18T19:05:57.4053877Z [Performance] Application.Shutdown.CleanupMono                                                                               :        1 samples, Peak.  50.2 ms (1.0x), Avg.  50.2 ms, Total. 50.21 ms (0.1%)
2024-05-18T19:05:57.4056578Z [Performance] Application.Shutdown.CleanupStdConverters                                                                      :        1 samples, Peak.  8.89 us (1.0x), Avg.  8.89 us, Total. 8.887 us (0.0%)
2024-05-18T19:05:57.4059575Z [Performance] Application.Shutdown.UnloadAllPlatformSupportModuleNativeDlls                                                  :        1 samples, Peak.   782 ns (1.0x), Avg.   782 ns, Total. 782.0 ns (0.0%)
2024-05-18T19:05:57.4062689Z [Performance] Application.Shutdown.UnloadAllPlatformSupportNativeLibraries                                                   :        1 samples, Peak.   281 ns (1.0x), Avg.   281 ns, Total. 281.0 ns (0.0%)
2024-05-18T19:05:57.4065650Z [Performance] Application.Shutdown.CleanupAutoDocumentation                                                                  :        1 samples, Peak.   269 us (1.0x), Avg.   269 us, Total. 269.0 us (0.0%)
2024-05-18T19:05:57.4068448Z [Performance] Application.Shutdown.ShaderNameManagerDestroy                                                                  :        1 samples, Peak.  40.7 us (1.0x), Avg.  40.7 us, Total. 40.74 us (0.0%)
2024-05-18T19:05:57.4071441Z [Performance] Application.Shutdown.CleanupCacheServer                                                                        :        1 samples, Peak.   271 ns (1.0x), Avg.   271 ns, Total. 271.0 ns (0.0%)
2024-05-18T19:05:57.4074141Z [Performance] Application.Shutdown.Virtualization_Shutdown                                                                   :        1 samples, Peak.   431 ns (1.0x), Avg.   431 ns, Total. 431.0 ns (0.0%)
2024-05-18T19:05:57.4076810Z [Performance] Application.Shutdown.DevConnections                                                                            :        1 samples, Peak.  41.1 us (1.0x), Avg.  41.1 us, Total. 41.14 us (0.0%)
2024-05-18T19:05:57.4078652Z Exiting batchmode successfully now!
2024-05-18T19:05:57.4079943Z Thread: ID 140618996495616, CleanupSafetyData: safetyData 7fe400071e20
2024-05-18T19:05:57.4081534Z Thread: ID 140618996495616, CleanupSafetyData: safetyData 7fe4000733b0
2024-05-18T19:05:57.4083294Z Thread: ID 140618996495616, CleanupSafetyData: safetyData 7fe40083f2c0
2024-05-18T19:05:57.4084699Z [Package Manager] Server process was shutdown
2024-05-18T19:05:57.4187713Z Checking for leaked weakptr:
2024-05-18T19:05:57.4188730Z   Found no leaked weakptrs.
2024-05-18T19:05:57.4266487Z Memory Statistics:
2024-05-18T19:05:57.4267437Z [ALLOC_TEMP_TLS] TLS Allocator
2024-05-18T19:05:57.4268409Z   StackAllocators : 
2024-05-18T19:05:57.4269304Z     [ALLOC_TEMP_MAIN]
2024-05-18T19:05:57.4270225Z       Initial Block Size 16.0 MB
2024-05-18T19:05:57.4271235Z       Current Block Size 16.0 MB
2024-05-18T19:05:57.4272252Z       Peak Allocated Bytes 9.4 MB
2024-05-18T19:05:57.4273285Z       Overflow Count 0
2024-05-18T19:05:57.4274192Z     [ALLOC_TEMP_CurlRequest]
2024-05-18T19:05:57.4275162Z       Initial Block Size 64.0 KB
2024-05-18T19:05:57.4276148Z       Current Block Size 64.0 KB
2024-05-18T19:05:57.4277151Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4278069Z       Overflow Count 0
2024-05-18T19:05:57.4279083Z     [ALLOC_TEMP_Background Job.worker 4]
2024-05-18T19:05:57.4280235Z       Initial Block Size 32.0 KB
2024-05-18T19:05:57.4281226Z       Current Block Size 32.0 KB
2024-05-18T19:05:57.4282229Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4283172Z       Overflow Count 0
2024-05-18T19:05:57.4284162Z     [ALLOC_TEMP_Loading.PreloadManager]
2024-05-18T19:05:57.4285242Z       Initial Block Size 32.0 MB
2024-05-18T19:05:57.4286222Z       Current Block Size 32.0 MB
2024-05-18T19:05:57.4287189Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4288115Z       Overflow Count 0
2024-05-18T19:05:57.4289053Z     [ALLOC_TEMP_Background Job.worker 3]
2024-05-18T19:05:57.4290074Z       Initial Block Size 32.0 KB
2024-05-18T19:05:57.4291028Z       Current Block Size 32.0 KB
2024-05-18T19:05:57.4291993Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4292888Z       Overflow Count 0
2024-05-18T19:05:57.4294062Z     [ALLOC_TEMP_AUDIO_FMOD stream thread]
2024-05-18T19:05:57.4295148Z       Initial Block Size 64.0 KB
2024-05-18T19:05:57.4296173Z       Current Block Size 64.0 KB
2024-05-18T19:05:57.4297191Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4298139Z       Overflow Count 0
2024-05-18T19:05:57.4299099Z     [ALLOC_TEMP_Background Job.worker 7]
2024-05-18T19:05:57.4300193Z       Initial Block Size 32.0 KB
2024-05-18T19:05:57.4301171Z       Current Block Size 32.0 KB
2024-05-18T19:05:57.4302163Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4303095Z       Overflow Count 0
2024-05-18T19:05:57.4304048Z     [ALLOC_TEMP_Background Job.worker 11]
2024-05-18T19:05:57.4305113Z       Initial Block Size 32.0 KB
2024-05-18T19:05:57.4306092Z       Current Block Size 32.0 KB
2024-05-18T19:05:57.4307060Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4307974Z       Overflow Count 0
2024-05-18T19:05:57.4308898Z     [ALLOC_TEMP_Loading.AsyncRead]
2024-05-18T19:05:57.4309904Z       Initial Block Size 64.0 KB
2024-05-18T19:05:57.4311489Z       Current Block Size 64.0 KB
2024-05-18T19:05:57.4312507Z       Peak Allocated Bytes 128 B
2024-05-18T19:05:57.4313462Z       Overflow Count 0
2024-05-18T19:05:57.4314431Z     [ALLOC_TEMP_CoreBusinessMetricsCache]
2024-05-18T19:05:57.4315507Z       Initial Block Size 64.0 KB
2024-05-18T19:05:57.4316504Z       Current Block Size 64.0 KB
2024-05-18T19:05:57.4317482Z       Peak Allocated Bytes 7.5 KB
2024-05-18T19:05:57.4318446Z       Overflow Count 0
2024-05-18T19:05:57.4319421Z     [ALLOC_TEMP_Background Job.worker 6]
2024-05-18T19:05:57.4320496Z       Initial Block Size 32.0 KB
2024-05-18T19:05:57.4321474Z       Current Block Size 32.0 KB
2024-05-18T19:05:57.4322457Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4323389Z       Overflow Count 0
2024-05-18T19:05:57.4324309Z     [ALLOC_TEMP_CloudJob.worker 0]
2024-05-18T19:05:57.4325321Z       Initial Block Size 32.0 KB
2024-05-18T19:05:57.4326307Z       Current Block Size 32.0 KB
2024-05-18T19:05:57.4327317Z       Peak Allocated Bytes 211 B
2024-05-18T19:05:57.4328283Z       Overflow Count 0
2024-05-18T19:05:57.4329440Z     [ALLOC_TEMP_EditorTaskManager]
2024-05-18T19:05:57.4330450Z       Initial Block Size 64.0 KB
2024-05-18T19:05:57.4331368Z       Current Block Size 68.0 KB
2024-05-18T19:05:57.4332354Z       Peak Allocated Bytes 64.0 KB
2024-05-18T19:05:57.4333688Z       Overflow Count 0
2024-05-18T19:05:57.4334633Z     [ALLOC_TEMP_Profiler.Dispatcher]
2024-05-18T19:05:57.4335624Z       Initial Block Size 64.0 KB
2024-05-18T19:05:57.4336622Z       Current Block Size 64.0 KB
2024-05-18T19:05:57.4337626Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4338572Z       Overflow Count 0
2024-05-18T19:05:57.4339523Z     [ALLOC_TEMP_Background Job.worker 12]
2024-05-18T19:05:57.4340595Z       Initial Block Size 32.0 KB
2024-05-18T19:05:57.4341549Z       Current Block Size 32.0 KB
2024-05-18T19:05:57.4342612Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4343597Z       Overflow Count 0
2024-05-18T19:05:57.4344579Z     [ALLOC_TEMP_AUDIO_ALSA Mixer]
2024-05-18T19:05:57.4345648Z       Initial Block Size 64.0 KB
2024-05-18T19:05:57.4346652Z       Current Block Size 64.0 KB
2024-05-18T19:05:57.4347926Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4348870Z       Overflow Count 0
2024-05-18T19:05:57.4349849Z     [ALLOC_TEMP_Background Job.worker 2]
2024-05-18T19:05:57.4350914Z       Initial Block Size 32.0 KB
2024-05-18T19:05:57.4351897Z       Current Block Size 32.0 KB
2024-05-18T19:05:57.4352877Z       Peak Allocated Bytes 64 B
2024-05-18T19:05:57.4353813Z       Overflow Count 0
2024-05-18T19:05:57.4354704Z     [ALLOC_TEMP_Job.worker 0]
2024-05-18T19:05:57.4355704Z       Initial Block Size 256.0 KB
2024-05-18T19:05:57.4356683Z       Current Block Size 1.0 MB
2024-05-18T19:05:57.4357618Z       Peak Allocated Bytes 1.0 MB
2024-05-18T19:05:57.4358546Z       Overflow Count 0
2024-05-18T19:05:57.4359499Z     [ALLOC_TEMP_Background Job.worker 10]
2024-05-18T19:05:57.4360563Z       Initial Block Size 32.0 KB
2024-05-18T19:05:57.4361576Z       Current Block Size 32.0 KB
2024-05-18T19:05:57.4362569Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4363497Z       Overflow Count 0
2024-05-18T19:05:57.4364444Z     [ALLOC_TEMP_Background Job.worker 8]
2024-05-18T19:05:57.4365513Z       Initial Block Size 32.0 KB
2024-05-18T19:05:57.4366513Z       Current Block Size 32.0 KB
2024-05-18T19:05:57.4367513Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4368445Z       Overflow Count 0
2024-05-18T19:05:57.4369412Z     [ALLOC_TEMP_Background Job.worker 15]
2024-05-18T19:05:57.4370514Z       Initial Block Size 32.0 KB
2024-05-18T19:05:57.4371523Z       Current Block Size 32.0 KB
2024-05-18T19:05:57.4372521Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4373695Z       Overflow Count 0
2024-05-18T19:05:57.4374663Z     [ALLOC_TEMP_Background Job.worker 9]
2024-05-18T19:05:57.4375716Z       Initial Block Size 32.0 KB
2024-05-18T19:05:57.4376650Z       Current Block Size 32.0 KB
2024-05-18T19:05:57.4377648Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4378902Z       Overflow Count 0
2024-05-18T19:05:57.4379932Z     [ALLOC_TEMP_Background Job.worker 1]
2024-05-18T19:05:57.4381070Z       Initial Block Size 32.0 KB
2024-05-18T19:05:57.4382144Z       Current Block Size 32.0 KB
2024-05-18T19:05:57.4383223Z       Peak Allocated Bytes 34 B
2024-05-18T19:05:57.4384244Z       Overflow Count 0
2024-05-18T19:05:57.4385266Z     [ALLOC_TEMP_AssetDatabase.IOService]
2024-05-18T19:05:57.4386360Z       Initial Block Size 64.0 KB
2024-05-18T19:05:57.4387369Z       Current Block Size 64.0 KB
2024-05-18T19:05:57.4388384Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4389323Z       Overflow Count 0
2024-05-18T19:05:57.4390277Z     [ALLOC_TEMP_Background Job.worker 13]
2024-05-18T19:05:57.4391412Z       Initial Block Size 32.0 KB
2024-05-18T19:05:57.4392470Z       Current Block Size 32.0 KB
2024-05-18T19:05:57.4393551Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4394569Z       Overflow Count 0
2024-05-18T19:05:57.4395591Z     [ALLOC_TEMP_BakingJobs.worker 0]
2024-05-18T19:05:57.4396675Z       Initial Block Size 256.0 KB
2024-05-18T19:05:57.4397992Z       Current Block Size 256.0 KB
2024-05-18T19:05:57.4399011Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4399977Z       Overflow Count 0
2024-05-18T19:05:57.4400943Z     [ALLOC_TEMP_Background Job.worker 5]
2024-05-18T19:05:57.4402028Z       Initial Block Size 32.0 KB
2024-05-18T19:05:57.4403014Z       Current Block Size 32.0 KB
2024-05-18T19:05:57.4404029Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4405021Z       Overflow Count 0
2024-05-18T19:05:57.4406086Z     [ALLOC_TEMP_AssetGarbageCollectorHelper]
2024-05-18T19:05:57.4407202Z       Initial Block Size 64.0 KB
2024-05-18T19:05:57.4408183Z       Current Block Size 64.0 KB
2024-05-18T19:05:57.4409215Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4410165Z       Overflow Count 0
2024-05-18T19:05:57.4411161Z     [ALLOC_TEMP_Background Job.worker 0]
2024-05-18T19:05:57.4412263Z       Initial Block Size 32.0 KB
2024-05-18T19:05:57.4414439Z       Current Block Size 32.0 KB
2024-05-18T19:05:57.4415526Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4416510Z       Overflow Count 0
2024-05-18T19:05:57.4417561Z     [ALLOC_TEMP_Background Job.worker 14]
2024-05-18T19:05:57.4418705Z       Initial Block Size 32.0 KB
2024-05-18T19:05:57.4419747Z       Current Block Size 32.0 KB
2024-05-18T19:05:57.4420761Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4421713Z       Overflow Count 0
2024-05-18T19:05:57.4422712Z     [ALLOC_TEMP_BakingJobs.worker 1]
2024-05-18T19:05:57.4423786Z       Initial Block Size 256.0 KB
2024-05-18T19:05:57.4424819Z       Current Block Size 256.0 KB
2024-05-18T19:05:57.4425975Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4494589Z       Overflow Count 0
2024-05-18T19:05:57.4495639Z     [ALLOC_TEMP_BatchDeleteObjects]
2024-05-18T19:05:57.4496701Z       Initial Block Size 64.0 KB
2024-05-18T19:05:57.4497722Z       Current Block Size 64.0 KB
2024-05-18T19:05:57.4498725Z       Peak Allocated Bytes 0 B
2024-05-18T19:05:57.4499689Z       Overflow Count 0
2024-05-18T19:05:57.4500557Z [ALLOC_MEMORYPROFILER]
2024-05-18T19:05:57.4501466Z   Requested Block Size 1.0 MB
2024-05-18T19:05:57.4502419Z   Peak Block count 1
2024-05-18T19:05:57.4503336Z   Peak Allocated memory 9.3 KB
2024-05-18T19:05:57.4504419Z   Peak Large allocation bytes 0 B
2024-05-18T19:05:57.4505480Z [ALLOC_DEFAULT] Dual Thread Allocator
2024-05-18T19:05:57.4506604Z   Peak main deferred allocation count 64
2024-05-18T19:05:57.4507643Z     [ALLOC_BUCKET]
2024-05-18T19:05:57.4508516Z       Large Block size 32.0 MB
2024-05-18T19:05:57.4509471Z       Used Block count 1
2024-05-18T19:05:57.4510412Z       Peak Allocated bytes 5.0 MB
2024-05-18T19:05:57.4511398Z     [ALLOC_DEFAULT_MAIN]
2024-05-18T19:05:57.4512340Z       Requested Block Size 16.0 MB
2024-05-18T19:05:57.4513338Z       Peak Block count 9
2024-05-18T19:05:57.4514309Z       Peak Allocated memory 139.0 MB
2024-05-18T19:05:57.4515403Z       Peak Large allocation bytes 9.3 MB
2024-05-18T19:05:57.4516449Z     [ALLOC_DEFAULT_THREAD]
2024-05-18T19:05:57.4517708Z       Requested Block Size 16.0 MB
2024-05-18T19:05:57.4518690Z       Peak Block count 1
2024-05-18T19:05:57.4519645Z       Peak Allocated memory 4.1 MB
2024-05-18T19:05:57.4520723Z       Peak Large allocation bytes 0 B
2024-05-18T19:05:57.4521753Z [ALLOC_TEMP_JOB_1_FRAME]
2024-05-18T19:05:57.4522677Z   Initial Block Size 2.0 MB
2024-05-18T19:05:57.4523601Z   Used Block Count 0
2024-05-18T19:05:57.4524513Z   Overflow Count (too large) 0
2024-05-18T19:05:57.4525477Z   Overflow Count (full) 0
2024-05-18T19:05:57.4526393Z [ALLOC_TEMP_JOB_2_FRAMES]
2024-05-18T19:05:57.4527309Z   Initial Block Size 2.0 MB
2024-05-18T19:05:57.4528226Z   Used Block Count 0
2024-05-18T19:05:57.4529138Z   Overflow Count (too large) 0
2024-05-18T19:05:57.4530087Z   Overflow Count (full) 0
2024-05-18T19:05:57.4531042Z [ALLOC_TEMP_JOB_4_FRAMES (JobTemp)]
2024-05-18T19:05:57.4532067Z   Initial Block Size 2.0 MB
2024-05-18T19:05:57.4533002Z   Used Block Count 1
2024-05-18T19:05:57.4534056Z   Overflow Count (too large) 0
2024-05-18T19:05:57.4535034Z   Overflow Count (full) 0
2024-05-18T19:05:57.4536198Z [ALLOC_TEMP_JOB_ASYNC (Background)]
2024-05-18T19:05:57.4537211Z   Initial Block Size 1.0 MB
2024-05-18T19:05:57.4538118Z   Used Block Count 1
2024-05-18T19:05:57.4539030Z   Overflow Count (too large) 0
2024-05-18T19:05:57.4539994Z   Overflow Count (full) 0
2024-05-18T19:05:57.4540948Z [ALLOC_GFX] Dual Thread Allocator
2024-05-18T19:05:57.4542011Z   Peak main deferred allocation count 0
2024-05-18T19:05:57.4543035Z     [ALLOC_BUCKET]
2024-05-18T19:05:57.4543913Z       Large Block size 32.0 MB
2024-05-18T19:05:57.4544864Z       Used Block count 1
2024-05-18T19:05:57.4545822Z       Peak Allocated bytes 5.0 MB
2024-05-18T19:05:57.4546792Z     [ALLOC_GFX_MAIN]
2024-05-18T19:05:57.4547707Z       Requested Block Size 16.0 MB
2024-05-18T19:05:57.4548689Z       Peak Block count 1
2024-05-18T19:05:57.4549636Z       Peak Allocated memory 7.9 MB
2024-05-18T19:05:57.4550696Z       Peak Large allocation bytes 0 B
2024-05-18T19:05:57.4551767Z     [ALLOC_GFX_THREAD]
2024-05-18T19:05:57.4552704Z       Requested Block Size 16.0 MB
2024-05-18T19:05:57.4553699Z       Peak Block count 0
2024-05-18T19:05:57.4554638Z       Peak Allocated memory 0 B
2024-05-18T19:05:57.4555669Z       Peak Large allocation bytes 0 B
2024-05-18T19:05:57.4556789Z [ALLOC_CACHEOBJECTS] Dual Thread Allocator
2024-05-18T19:05:57.4557955Z   Peak main deferred allocation count 85
2024-05-18T19:05:57.4559002Z     [ALLOC_BUCKET]
2024-05-18T19:05:57.4559878Z       Large Block size 32.0 MB
2024-05-18T19:05:57.4560826Z       Used Block count 1
2024-05-18T19:05:57.4561769Z       Peak Allocated bytes 5.0 MB
2024-05-18T19:05:57.4562779Z     [ALLOC_CACHEOBJECTS_MAIN]
2024-05-18T19:05:57.4563764Z       Requested Block Size 4.0 MB
2024-05-18T19:05:57.4564746Z       Peak Block count 2
2024-05-18T19:05:57.4565703Z       Peak Allocated memory 25.8 MB
2024-05-18T19:05:57.4566806Z       Peak Large allocation bytes 20.1 MB
2024-05-18T19:05:57.4567971Z     [ALLOC_CACHEOBJECTS_THREAD]
2024-05-18T19:05:57.4569007Z       Requested Block Size 4.0 MB
2024-05-18T19:05:57.4569981Z       Peak Block count 1
2024-05-18T19:05:57.4570920Z       Peak Allocated memory 2.2 KB
2024-05-18T19:05:57.4571996Z       Peak Large allocation bytes 0 B
2024-05-18T19:05:57.4573135Z [ALLOC_TYPETREE] Dual Thread Allocator
2024-05-18T19:05:57.4652046Z   Peak main deferred allocation count 902
2024-05-18T19:05:57.4653063Z     [ALLOC_BUCKET]
2024-05-18T19:05:57.4654176Z       Large Block size 32.0 MB
2024-05-18T19:05:57.4655144Z       Used Block count 1
2024-05-18T19:05:57.4656089Z       Peak Allocated bytes 5.0 MB
2024-05-18T19:05:57.4657082Z     [ALLOC_TYPETREE_MAIN]
2024-05-18T19:05:57.4658032Z       Requested Block Size 2.0 MB
2024-05-18T19:05:57.4659020Z       Peak Block count 2
2024-05-18T19:05:57.4659974Z       Peak Allocated memory 3.2 MB
2024-05-18T19:05:57.4661054Z       Peak Large allocation bytes 0 B
2024-05-18T19:05:57.4662130Z     [ALLOC_TYPETREE_THREAD]
2024-05-18T19:05:57.4663115Z       Requested Block Size 2.0 MB
2024-05-18T19:05:57.4664369Z       Peak Block count 0
2024-05-18T19:05:57.4665312Z       Peak Allocated memory 0 B
2024-05-18T19:05:57.4666348Z       Peak Large allocation bytes 0 B
2024-05-18T19:05:57.4667266Z [ALLOC_PROFILER]
2024-05-18T19:05:57.4668106Z   Requested Block Size 16.0 MB
2024-05-18T19:05:57.4669027Z   Peak Block count 1
2024-05-18T19:05:57.4669913Z   Peak Allocated memory 79.6 KB
2024-05-18T19:05:57.4670919Z   Peak Large allocation bytes 0 B
2024-05-18T19:05:57.4671931Z     [ALLOC_PROFILER_BUCKET]
2024-05-18T19:05:57.4672905Z       Large Block size 32.0 MB
2024-05-18T19:05:57.4673904Z       Used Block count 1
2024-05-18T19:05:57.4674842Z       Peak Allocated bytes 4.0 KB
2024-05-18T19:05:57.4675813Z [ALLOC_PROFILER_EDITOR]
2024-05-18T19:05:57.4676742Z   Requested Block Size 1.0 MB
2024-05-18T19:05:57.4677678Z   Peak Block count 0
2024-05-18T19:05:57.4678554Z   Peak Allocated memory 0 B
2024-05-18T19:05:57.4679527Z   Peak Large allocation bytes 0 B
2024-05-18T19:05:57.4680522Z     [ALLOC_PROFILER_BUCKET]
2024-05-18T19:05:57.4684733Z       Large Block size 32.0 MB
2024-05-18T19:05:57.4685678Z       Used Block count 1
2024-05-18T19:05:57.4686532Z       Peak Allocated bytes 4.0 KB
2024-05-18T19:05:57.4697555Z ##utp:{"type":"MemoryLeaks","version":2,"phase":"Immediate","time":1716059157424,"processId":29,"allocatedMemory":6889418,"memoryLabels":[{"Default":13877},{"Permanent":16080},{"Thread":1085128},{"Manager":16890},{"VertexData":8},{"Geometry":408},{"Texture":160},{"Shader":78150},{"Material":24},{"GfxDevice":221624},{"Animation":392},{"Audio":4032},{"FontEngine":288},{"Physics":369},{"Serialization":752},{"Input":26744},{"JobScheduler":256},{"Mono":32},{"ScriptingNativeRuntime":155096},{"BaseObject":1622024},{"Resource":1024},{"Renderer":2376},{"Transform":4678},{"File":832},{"WebCam":32},{"Culling":32},{"Terrain":857},{"Wind":24},{"String":45589},{"DynamicArray":72900},{"HashMap":60375},{"Utility":2657824},{"Curl":1128},{"PoolAlloc":1568},{"AI":72},{"TypeTree":4493},{"ScriptManager":512},{"RuntimeInitializeOnLoadManager":64},{"SpriteAtlas":112},{"GI":7448},{"Director":8208},{"CloudService":20368},{"WebRequest":808},{"VR":45673},{"SceneManager":528},{"Video":64},{"LazyScriptCache":32},{"NativeArray":8},{"Camera":17},{"Secure":12217},{"Image":16384},{"SerializationCache":1576},{"APIUpdating":10320},{"Subsystems":336},{"VirtualTexturing":57552},{"StaticSafetyDebugInfo":278528},{"Analytics":368},{"Hierarchy":576},{"Gui":80},{"EditorUtility":14697},{"VersionControl":4},{"Undo":656},{"AssetDatabase":238218},{"EditorGi":328},{"UnityConnect":24992},{"Collab":593},{"Upm":21891},{"DrivenProperties":72},{"LocalIPC":196},{"ProfilerEditor":9738},{"CoreBusinessMetrics":13525},{"TLS":2983},{"Licensing":3544},{"AssetReference":32},{"IPCStream":32}]}
2024-05-18T19:05:57.4759561Z Activation successful
2024-05-18T19:05:57.4760606Z Activation complete.
2024-05-18T19:05:57.4767368Z Using project path "/github/workspace/.".
2024-05-18T19:05:57.4768701Z Using artifacts path "artifacts" to save test results.
2024-05-18T19:05:57.4770238Z Using coverage results path "CodeCoverage" to save test coverage results.
2024-05-18T19:05:57.4771560Z Using custom parameters .
2024-05-18T19:05:57.4772541Z Using Unity version "2023.2.9f1" to test.
2024-05-18T19:05:57.4787643Z 
2024-05-18T19:05:57.4788267Z ###########################
2024-05-18T19:05:57.4789885Z #    Artifacts folder     #
2024-05-18T19:05:57.4790818Z ###########################
2024-05-18T19:05:57.4791375Z 
2024-05-18T19:05:57.4791966Z Creating "/github/workspace/artifacts" if it does not exist.
2024-05-18T19:05:57.4803326Z 
2024-05-18T19:05:57.4803709Z ###########################
2024-05-18T19:05:57.4810118Z #    Project directory    #
2024-05-18T19:05:57.4811081Z ###########################
2024-05-18T19:05:57.4815634Z 
2024-05-18T19:05:57.4847922Z total 56K
2024-05-18T19:05:57.4849140Z drwxr-xr-x  9 1001  127 4.0K May 18 19:05 .
2024-05-18T19:05:57.4850395Z drwxr-xr-x  4 root root 4.0K May 18 19:04 ..
2024-05-18T19:05:57.4851673Z -rw-r--r--  1 1001  127 8.1K May 18 19:02 .DS_Store
2024-05-18T19:05:57.4853872Z drwxr-xr-x  9 1001  127 4.0K May 18 19:02 .git
2024-05-18T19:05:57.4855139Z drwxr-xr-x  3 1001  127 4.0K May 18 19:02 .github
2024-05-18T19:05:57.4856411Z -rw-r--r--  1 1001  127 1.4K May 18 19:02 .gitignore
2024-05-18T19:05:57.4857699Z drwxr-xr-x  2 1001  127 4.0K May 18 19:02 .vscode
2024-05-18T19:05:57.4858979Z drwxr-xr-x 11 1001  127 4.0K May 18 19:02 Assets
2024-05-18T19:05:57.4860265Z drwxr-xr-x  2 1001  127 4.0K May 18 19:02 Packages
2024-05-18T19:05:57.4861649Z drwxr-xr-x  2 1001  127 4.0K May 18 19:02 ProjectSettings
2024-05-18T19:05:57.4863020Z drwxr-xr-x  2 root root 4.0K May 18 19:05 artifacts
2024-05-18T19:05:57.4864354Z -rw-r--r--  1 1001  127  750 May 18 19:02 ignore.conf
2024-05-18T19:05:57.4871948Z 
2024-05-18T19:05:57.4898737Z ###########################
2024-05-18T19:05:57.4899730Z #   Testing in editmode  #
2024-05-18T19:05:57.4900690Z ###########################
2024-05-18T19:05:57.4901277Z 
2024-05-18T19:07:10.1561500Z ##[error]The operation was canceled.
2024-05-18T19:07:10.1736396Z Post job cleanup.
2024-05-18T19:07:10.6880720Z Post job cleanup.
2024-05-18T19:07:10.7656217Z [command]/usr/bin/git version
2024-05-18T19:07:10.7719397Z git version 2.45.1
2024-05-18T19:07:10.7790435Z Temporarily overriding HOME='/home/runner/work/_temp/69f961c3-513c-4e95-84ab-6ef7a5ba974c' before making global git config changes
2024-05-18T19:07:10.7796769Z Adding repository directory to the temporary git global config as a safe directory
2024-05-18T19:07:10.7807483Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/FeuerSim/FeuerSim
2024-05-18T19:07:10.7864201Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2024-05-18T19:07:10.7919486Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2024-05-18T19:07:10.8351863Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2024-05-18T19:07:10.8390391Z http.https://github.com/.extraheader
2024-05-18T19:07:10.8417842Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2024-05-18T19:07:10.8477228Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2024-05-18T19:07:10.9329133Z Cleaning up orphan processes
MhouneyLH commented 2 months ago

Nevermind, I waited now like 13 mins and it got it done. It does stuff in the background, it just does not print it to the console. Because of this, I thought, that it does not work. Just after it ran all tests, it shows the whole output.

Maybe this should be changed, so that the output gets shown right away, that a user can see, that something happens. :)

In the performance information is logged, that the initialization of the project took like 6mins. That seems pretty long for just 1 test without any extra dependencies.