CI: ABC-413 Temporarily exempt obsolete api warnings of "EditorAnalytics" before they are fixed (#554)

* Exempt warnings about two deprecated EditorAnalytics APIs from clean console test

* Use brick v0.2.0

* Add JIRA tickets for the exempted messages

* Update clean_console_exemption_list.json

Co-authored-by: Rose Hirigoyen <35508849+RoseHirigoyen@users.noreply.github.com>

* Update 2022.2 to 2022.3 in CI

---------

Co-authored-by: Rose Hirigoyen <35508849+RoseHirigoyen@users.noreply.github.com>
This commit is contained in:
windxu88 2023-07-06 13:47:19 -04:00 коммит произвёл GitHub
Родитель 0c04643a5b
Коммит 7e5516aa9b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 14 добавлений и 5 удалений

Просмотреть файл

@ -11,7 +11,7 @@ clean_console_test_{{ platform.name }}_{{ editor.version }}:
image: {{ platform.image }}
flavor: {{ platform.flavor}}
commands:
- brick_source: git@github.cds.internal.unity3d.com:wind-xu/clean_console_test_brick.git@v0.1.0
- brick_source: git@github.cds.internal.unity3d.com:wind-xu/clean_console_test_brick.git@v0.2.0
variables:
CLEAN_CONSOLE_TEST_FOR: package
PACKAGE_PATH: ./com.unity.formats.alembic
@ -32,7 +32,7 @@ AlembicHDRP_clean_console_test_{{ platform.name }}_{{ editor.version }}:
image: {{ platform.image }}
flavor: {{ platform.flavor}}
commands:
- brick_source: git@github.cds.internal.unity3d.com:wind-xu/clean_console_test_brick.git@v0.1.0
- brick_source: git@github.cds.internal.unity3d.com:wind-xu/clean_console_test_brick.git@v0.2.0
variables:
CLEAN_CONSOLE_TEST_FOR: project
PROJECT_PATH: {{ hdrp_test_project.path }}
@ -53,7 +53,7 @@ AlembicRecorder_clean_console_test_{{ platform.name }}_{{ editor.version }}:
image: {{ platform.image }}
flavor: {{ platform.flavor}}
commands:
- brick_source: git@github.cds.internal.unity3d.com:wind-xu/clean_console_test_brick.git@v0.1.0
- brick_source: git@github.cds.internal.unity3d.com:wind-xu/clean_console_test_brick.git@v0.2.0
variables:
CLEAN_CONSOLE_TEST_FOR: project
PROJECT_PATH: {{ recorder_test_project.path }}

Просмотреть файл

@ -2,12 +2,12 @@ test_editors:
- version: 2019.4
- version: 2020.3
- version: 2021.3
- version: 2022.2
- version: 2022.3
- version: 2023.1
- version: trunk
clean_console_test_editors:
- version: 2022.2
- version: 2022.3
- version: 2023.1
- version: trunk

Просмотреть файл

@ -0,0 +1,9 @@
{
"exempts":{
"ABC-413" : "The exemptions of EditorAnalytics's obsolete API warnings need to be removed once ABC-408 is resolved",
"messages": [
"'EditorAnalytics.SendEventWithLimit(string, object)' is obsolete: 'Editor Analytics APIs have changed significantly, please see: https://docs.editor-data.unity3d.com/Contribute/EditorAnalytics/cs_guide/'",
"'EditorAnalytics.RegisterEventWithLimit(string, int, int, string)' is obsolete: 'Editor Analytics APIs have changed significantly, please see: https://docs.editor-data.unity3d.com/Contribute/EditorAnalytics/cs_guide/'"
]
}
}