Skip to content

Commit

Permalink
Fix publish job dependencies (#570)
Browse files Browse the repository at this point in the history
  • Loading branch information
windxu88 authored Nov 2, 2023
1 parent 96c5cff commit 5a5c70e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .yamato/package-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,12 @@ publish_dry_run:
- .yamato/package-pack.yml#pack
{% for editor in test_editors %}
{% for platform in test_platforms %}
# For 2023.2 and trunk, run package and AlembicRecorder tests on ALL platforms including Silicon Mac.
# For 2023.1 and below, only run tests on non-Silicon Mac platforms because of known compilation errors on Silicon Mac.
{% if platform.model != "M1" or editor.version == "2023.2" or editor.version == "trunk" %}
- .yamato/package-test.yml#test_{{ platform.name }}_{{ editor.version }}
- .yamato/project-test.yml#test_project_{{ recorder_test_project.name }}_{{ platform.name }}_{{ editor.version }}
{% endif %}
{% endfor %}
{% endfor %}

Expand All @@ -53,7 +57,11 @@ publish:
- .yamato/package-pack.yml#pack
{% for editor in test_editors %}
{% for platform in test_platforms %}
# For 2023.2 and trunk, run package and AlembicRecorder tests on ALL platforms including Silicon Mac.
# For 2023.1 and below, only run tests on non-Silicon Mac platforms because of known compilation errors on Silicon Mac.
{% if platform.model != "M1" or editor.version == "2023.2" or editor.version == "trunk" %}
- .yamato/package-test.yml#test_{{ platform.name }}_{{ editor.version }}
- .yamato/project-test.yml#test_project_{{ recorder_test_project.name }}_{{ platform.name }}_{{ editor.version }}
{% endif %}
{% endfor %}
{% endfor %}

0 comments on commit 5a5c70e

Please sign in to comment.