Skip to content

Commit 5789339

Browse files
committed
Merge branch 'origin/develop' into release_23
2 parents de86e6e + 7db8843 commit 5789339

File tree

313 files changed

+8633
-991
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

313 files changed

+8633
-991
lines changed

.github/workflows/pre-commit.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ on:
1212
jobs:
1313
pre-commit:
1414
runs-on: ubuntu-24.04
15+
env:
16+
DOTNET_NOLOGO: 1
1517
steps:
1618
- uses: actions/checkout@v4
1719
- uses: actions/setup-python@v5
@@ -26,6 +28,8 @@ jobs:
2628
- uses: actions/setup-dotnet@v4
2729
with:
2830
dotnet-version: '8.0.202'
31+
- name: Clean dotnet shared memory
32+
run: sudo rm -rf /tmp/.dotnet/shm
2933
- name: Install manual dependencies
3034
run: |
3135
python -m pip install pre-commit

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@
5050
# Plugins
5151
/com.unity.ml-agents/VideoRecorder*
5252

53-
# Generated doc folders
54-
/docs/html
53+
# MkDocs build output
54+
/site/
5555

5656
# Mac hidden files
5757
*.DS_Store

.yamato/com.unity.ml-agents-coverage.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ test_coverage_{{ package.name }}_{{ platform.name }}_{{ editor.version }}_{{ edi
3333
NOT pull_request.draft AND
3434
(pull_request.changes.any match "com.unity.ml-agents/**" OR
3535
pull_request.changes.any match " {{ editor.testProject }}/**" OR
36-
{% if package.name == "com.unity.ml-agents.extensions" %}
37-
pull_request.changes.any match "com.unity.ml-agents.extensions/**" OR
38-
{% endif %}
3936
pull_request.changes.any match ".yamato/com.unity.ml-agents-coverage.yml")
4037
{% endif %}
4138
{% endfor %}

.yamato/com.unity.ml-agents-pack.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ pack:
77
commands:
88
- |
99
eval "$($HOME/anaconda/bin/conda shell.bash hook)"
10+
sudo apt-get update
11+
sudo apt-get install upm-pvp=0.76.0
1012
conda activate python3.10
1113
python3 -m pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple --upgrade
1214
unity-downloader-cli -u 6000.0 -c editor --wait --fast

.yamato/com.unity.ml-agents-test.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ test_editors:
88
enableNoDefaultPackages: !!bool true
99

1010
trunk_editor:
11-
- version: trunk
11+
- version: 6000.3.0a3
1212
testProject: DevProject
1313

1414
test_platforms:
@@ -29,9 +29,6 @@ packages:
2929
- name: com.unity.ml-agents
3030
assembly: Unity.ML-Agents
3131
minCoveragePct: 72
32-
- name: com.unity.ml-agents.extensions
33-
assembly: Unity.ML-Agents.Extensions*
34-
minCoveragePct: 75
3532
---
3633

3734
all_package_tests:
@@ -102,9 +99,6 @@ test_{{ package.name }}_{{ platform.name }}_{{ editor.version }}_{{ editor.testP
10299
NOT pull_request.draft AND
103100
(pull_request.changes.any match "com.unity.ml-agents/**" OR
104101
pull_request.changes.any match " {{ editor.testProject }}/**" OR
105-
{% if package.name == "com.unity.ml-agents.extensions" %}
106-
pull_request.changes.any match "com.unity.ml-agents.extensions/**" OR
107-
{% endif %}
108102
pull_request.changes.any match ".yamato/com.unity.ml-agents-test.yml")
109103
{% endif %}
110104
{% endfor %}

.yamato/compressed-sensor-test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ test_compressed_obs_{{ editor.version }}_{{ editor.extra_test }}:
2828
pull_request.target match "release.+") AND
2929
NOT pull_request.draft AND
3030
(pull_request.changes.any match "com.unity.ml-agents/**" OR
31-
pull_request.changes.any match "com.unity.ml-agents.extensions/**" OR
3231
pull_request.changes.any match "Project/**" OR
3332
pull_request.changes.any match "ml-agents/tests/yamato/**" OR
3433
pull_request.changes.any match "ml-agents-envs/**" OR

.yamato/coverage_tests.metafile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,3 @@ coverage_test_packages:
1212
- name: com.unity.ml-agents
1313
assembly: Unity.ML-Agents
1414
minCoveragePct: 72
15-
- name: com.unity.ml-agents.extensions
16-
assembly: Unity.ML-Agents.Extensions*
17-
minCoveragePct: 75

.yamato/standalone-build-test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ test_linux_standalone_{{ editor.version }}_{{ editor.extra_test }}:
3030
pull_request.target match "release.+") AND
3131
NOT pull_request.draft AND
3232
(pull_request.changes.any match "com.unity.ml-agents/**" OR
33-
pull_request.changes.any match "com.unity.ml-agents.extensions/**" OR
3433
pull_request.changes.any match ".yamato/standalone-build-test.yml") AND
3534
NOT pull_request.changes.all match "**/*.md"
3635
artifacts:

.yamato/test_versions.metafile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ test_editors:
77
extra_test: gym
88
- version: 6000.0
99
extra_test: sensor
10-
- version: trunk
10+
- version: 6000.3.0a3
1111
extra_test: llapi

.yamato/training-int-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ test_linux_training_int_{{ editor.version }}_{{ editor.extra_test }}:
2525
pull_request.target match "release.+") AND
2626
NOT pull_request.draft AND
2727
(pull_request.changes.any match "com.unity.ml-agents/**" OR
28-
pull_request.changes.any match "com.unity.ml-agents.extensions/**" OR
2928
pull_request.changes.any match "Project/**" OR
3029
pull_request.changes.any match "ml-agents/**" OR
3130
pull_request.changes.any match "ml-agents-envs/**" OR

0 commit comments

Comments
 (0)