forked from unity3d-jp/UnityChanToonShaderVer2_Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Task/975 check aov recorder (unity3d-jp#97)
* Reverted HDP-DefaultVolumeProject-2020.3 project. * Added HDRP-AovRecorderProject. * Added recoder in the project. * Disabled some codes using input system in the project. * Updated HDRP Version from 10.7.0 to 10.8.1 in HDRP-AovRecorderProject-2020.3. [skip ci] * Disabled Input.* and installed recoreder. * Updated Editor settings * Updated project to check AOVRecorder issue. * Addec CheckAOVIssueProject and deleted HDRP-AovRecorderProject-2020.3. * Made the shader comapatible with Recorder.AOV normals. * Installed recorder 3.0.3 into HDRP working project. * Recordings folder should be ignored when checking in. * Updated all the windows test yml files not to use RTX2080.
- Loading branch information
Showing
1,399 changed files
with
305,850 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
[Bb]uilds/ | ||
[Uu]nityPackageManager/ | ||
[Uu]serSettings/ | ||
[Rr]ecordings/ | ||
Assets/AssetStoreTools* | ||
|
||
# Mac | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,39 @@ | ||
# | ||
# | ||
# | ||
test_projects: | ||
- name: HdrpGraphicsTest-2019.4 | ||
unity_versions: | ||
- name: 2019.4 | ||
--- | ||
{% for test_project in test_projects %} | ||
{% for unity_version in unity_versions %} | ||
{{ test_project.name }}_Win_DX11_playmode_{{ unity_version.name }}: | ||
name: {{ test_project.name }} on Win_DX11_playmode on version {{ unity_version.name }} | ||
agent: | ||
type: Unity::VM::GPU | ||
image: graphics-foundation/win10-dxr:stable | ||
flavor: b1.xlarge | ||
model: rtx2080 | ||
variables: | ||
UPM_REGISTRY: https://artifactory-slo.bf.unity3d.com/artifactory/api/npm/upm-candidates | ||
dependencies: | ||
- path: .yamato/_editor.yml#editor:priming:{{ unity_version.name }}:windows | ||
rerun: on-new-revision | ||
commands: | ||
- curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output TestProjects/{{ test_project.name }}/utr.bat | ||
- pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple --upgrade | ||
- cd TestProjects/{{ test_project.name }} && unity-downloader-cli --source-file ../../unity_revision_{{ unity_version.name }}.txt -c editor -c il2cpp --wait --published-only | ||
# - cd TestProjects/{{ test_project.name }} && utr --scripting-backend=Mono2x --suite=playmode --suite=playmode --testproject=. --editor-location=.Editor --artifacts_path=test-results --extra-editor-arg="-force-d3d11" --zero-tests-are-ok=1 | ||
- cd TestProjects/{{ test_project.name }} && utr --suite=playmode --testproject=. --editor-location=.Editor --artifacts_path=test-results --extra-editor-arg="-force-d3d11" | ||
timeout: 360000 | ||
retries: 1 | ||
triggers: | ||
branches: | ||
only: | ||
- "/.*/" | ||
artifacts: | ||
logs: | ||
paths: | ||
- "**/test-results/**" | ||
{% endfor %} | ||
{% endfor %} | ||
# | ||
# | ||
# | ||
test_projects: | ||
- name: HdrpGraphicsTest-2019.4 | ||
unity_versions: | ||
- name: 2019.4 | ||
--- | ||
{% for test_project in test_projects %} | ||
{% for unity_version in unity_versions %} | ||
{{ test_project.name }}_Win_DX11_playmode_{{ unity_version.name }}: | ||
name: {{ test_project.name }} on Win_DX11_playmode on version {{ unity_version.name }} | ||
agent: | ||
type: Unity::VM::GPU | ||
image: graphics-foundation/win10-dxr:stable | ||
flavor: b1.large | ||
variables: | ||
UPM_REGISTRY: https://artifactory-slo.bf.unity3d.com/artifactory/api/npm/upm-candidates | ||
dependencies: | ||
- path: .yamato/_editor.yml#editor:priming:{{ unity_version.name }}:windows | ||
rerun: on-new-revision | ||
commands: | ||
- curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output TestProjects/{{ test_project.name }}/utr.bat | ||
- pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple --upgrade | ||
- cd TestProjects/{{ test_project.name }} && unity-downloader-cli --source-file ../../unity_revision_{{ unity_version.name }}.txt -c editor -c il2cpp --wait --published-only | ||
# - cd TestProjects/{{ test_project.name }} && utr --scripting-backend=Mono2x --suite=playmode --suite=playmode --testproject=. --editor-location=.Editor --artifacts_path=test-results --extra-editor-arg="-force-d3d11" --zero-tests-are-ok=1 | ||
- cd TestProjects/{{ test_project.name }} && utr --suite=playmode --testproject=. --editor-location=.Editor --artifacts_path=test-results --extra-editor-arg="-force-d3d11" | ||
timeout: 360000 | ||
retries: 1 | ||
triggers: | ||
branches: | ||
only: | ||
- "/.*/" | ||
artifacts: | ||
logs: | ||
paths: | ||
- "**/test-results/**" | ||
{% endfor %} | ||
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,42 @@ | ||
# | ||
# | ||
# | ||
test_projects: | ||
- name: UniversalGraphicsTest-2019.4 | ||
unity_versions: | ||
- name: 2019.4 | ||
- name: 2020.3 | ||
- name: 2021.1 | ||
# - name: 2021.2 | ||
--- | ||
{% for test_project in test_projects %} | ||
{% for unity_version in unity_versions %} | ||
{{ test_project.name }}_Win_DX11_playmode_{{ unity_version.name }}: | ||
name: {{ test_project.name }} on Win_DX11_playmode on version {{ unity_version.name }} | ||
agent: | ||
type: Unity::VM::GPU | ||
image: graphics-foundation/win10-dxr:stable | ||
flavor: b1.xlarge | ||
model: rtx2080 | ||
variables: | ||
UPM_REGISTRY: https://artifactory-slo.bf.unity3d.com/artifactory/api/npm/upm-candidates | ||
dependencies: | ||
- path: .yamato/_editor.yml#editor:priming:{{ unity_version.name }}:windows | ||
rerun: on-new-revision | ||
commands: | ||
- curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output TestProjects/{{ test_project.name }}/utr.bat | ||
- pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple --upgrade | ||
- cd TestProjects/{{ test_project.name }} && unity-downloader-cli --source-file ../../unity_revision_{{ unity_version.name }}.txt -c editor -c il2cpp --wait --published-only | ||
# - cd TestProjects/{{ test_project.name }} && utr --scripting-backend=Mono2x --suite=playmode --suite=playmode --testproject=. --editor-location=.Editor --artifacts_path=test-results --extra-editor-arg="-force-d3d11" --zero-tests-are-ok=1 | ||
- cd TestProjects/{{ test_project.name }} && utr --suite=playmode --testproject=. --editor-location=.Editor --artifacts_path=test-results --extra-editor-arg="-force-d3d11" | ||
timeout: 360000 | ||
retries: 1 | ||
triggers: | ||
branches: | ||
only: | ||
- "/.*/" | ||
artifacts: | ||
logs: | ||
paths: | ||
- "**/test-results/**" | ||
{% endfor %} | ||
{% endfor %} | ||
# | ||
# | ||
# | ||
test_projects: | ||
- name: UniversalGraphicsTest-2019.4 | ||
unity_versions: | ||
- name: 2019.4 | ||
- name: 2020.3 | ||
- name: 2021.1 | ||
# - name: 2021.2 | ||
--- | ||
{% for test_project in test_projects %} | ||
{% for unity_version in unity_versions %} | ||
{{ test_project.name }}_Win_DX11_playmode_{{ unity_version.name }}: | ||
name: {{ test_project.name }} on Win_DX11_playmode on version {{ unity_version.name }} | ||
agent: | ||
type: Unity::VM::GPU | ||
image: graphics-foundation/win10-dxr:stable | ||
flavor: b1.large | ||
variables: | ||
UPM_REGISTRY: https://artifactory-slo.bf.unity3d.com/artifactory/api/npm/upm-candidates | ||
dependencies: | ||
- path: .yamato/_editor.yml#editor:priming:{{ unity_version.name }}:windows | ||
rerun: on-new-revision | ||
commands: | ||
- curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output TestProjects/{{ test_project.name }}/utr.bat | ||
- pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple --upgrade | ||
- cd TestProjects/{{ test_project.name }} && unity-downloader-cli --source-file ../../unity_revision_{{ unity_version.name }}.txt -c editor -c il2cpp --wait --published-only | ||
# - cd TestProjects/{{ test_project.name }} && utr --scripting-backend=Mono2x --suite=playmode --suite=playmode --testproject=. --editor-location=.Editor --artifacts_path=test-results --extra-editor-arg="-force-d3d11" --zero-tests-are-ok=1 | ||
- cd TestProjects/{{ test_project.name }} && utr --suite=playmode --testproject=. --editor-location=.Editor --artifacts_path=test-results --extra-editor-arg="-force-d3d11" | ||
timeout: 360000 | ||
retries: 1 | ||
triggers: | ||
branches: | ||
only: | ||
- "/.*/" | ||
artifacts: | ||
logs: | ||
paths: | ||
- "**/test-results/**" | ||
{% endfor %} | ||
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,39 @@ | ||
# | ||
# | ||
# | ||
test_projects: | ||
- name: HdrpGraphicsTest-2019.4 | ||
unity_versions: | ||
- name: 2019.4 | ||
--- | ||
{% for test_project in test_projects %} | ||
{% for unity_version in unity_versions %} | ||
{{ test_project.name }}_Win_Vulkan_playmode_{{ unity_version.name }}: | ||
name: {{ test_project.name }} on Win_Vulkan_playmode on version {{ unity_version.name }} | ||
agent: | ||
type: Unity::VM::GPU | ||
image: graphics-foundation/win10-dxr:stable | ||
flavor: b1.xlarge | ||
model: rtx2080 | ||
variables: | ||
UPM_REGISTRY: https://artifactory-slo.bf.unity3d.com/artifactory/api/npm/upm-candidates | ||
dependencies: | ||
- path: .yamato/_editor.yml#editor:priming:{{ unity_version.name }}:windows | ||
rerun: on-new-revision | ||
commands: | ||
- curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output TestProjects/{{ test_project.name }}/utr.bat | ||
- pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple --upgrade | ||
- cd TestProjects/{{ test_project.name }} && unity-downloader-cli --source-file ../../unity_revision_{{ unity_version.name }}.txt -c editor -c il2cpp --wait --published-only | ||
# - cd TestProjects/{{ test_project.name }} && utr --scripting-backend=Mono2x --suite=playmode --suite=playmode --testproject=. --editor-location=.Editor --artifacts_path=test-results --zero-tests-are-ok=1 | ||
- cd TestProjects/{{ test_project.name }} && utr --suite=playmode --testproject=. --editor-location=.Editor --artifacts_path=test-results | ||
timeout: 360000 | ||
retries: 1 | ||
triggers: | ||
branches: | ||
only: | ||
- "/.*/" | ||
artifacts: | ||
logs: | ||
paths: | ||
- "**/test-results/**" | ||
{% endfor %} | ||
{% endfor %} | ||
# | ||
# | ||
# | ||
test_projects: | ||
- name: HdrpGraphicsTest-2019.4 | ||
unity_versions: | ||
- name: 2019.4 | ||
--- | ||
{% for test_project in test_projects %} | ||
{% for unity_version in unity_versions %} | ||
{{ test_project.name }}_Win_Vulkan_playmode_{{ unity_version.name }}: | ||
name: {{ test_project.name }} on Win_Vulkan_playmode on version {{ unity_version.name }} | ||
agent: | ||
type: Unity::VM::GPU | ||
image: graphics-foundation/win10-dxr:stable | ||
flavor: b1.large | ||
variables: | ||
UPM_REGISTRY: https://artifactory-slo.bf.unity3d.com/artifactory/api/npm/upm-candidates | ||
dependencies: | ||
- path: .yamato/_editor.yml#editor:priming:{{ unity_version.name }}:windows | ||
rerun: on-new-revision | ||
commands: | ||
- curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output TestProjects/{{ test_project.name }}/utr.bat | ||
- pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple --upgrade | ||
- cd TestProjects/{{ test_project.name }} && unity-downloader-cli --source-file ../../unity_revision_{{ unity_version.name }}.txt -c editor -c il2cpp --wait --published-only | ||
# - cd TestProjects/{{ test_project.name }} && utr --scripting-backend=Mono2x --suite=playmode --suite=playmode --testproject=. --editor-location=.Editor --artifacts_path=test-results --zero-tests-are-ok=1 | ||
- cd TestProjects/{{ test_project.name }} && utr --suite=playmode --testproject=. --editor-location=.Editor --artifacts_path=test-results | ||
timeout: 360000 | ||
retries: 1 | ||
triggers: | ||
branches: | ||
only: | ||
- "/.*/" | ||
artifacts: | ||
logs: | ||
paths: | ||
- "**/test-results/**" | ||
{% endfor %} | ||
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.