Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .yamato/_abv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ all_project_ci_nightly_2020.1:
dependencies:
- path: .yamato/_abv.yml#all_project_ci_2020.1
rerun: on-new-revision
- path: .yamato/_templates.yml#all_template_ci_2020.1
rerun: on-new-revision
- path: .yamato/_abv.yml#smoke_test_Standalone_2020.1
rerun: on-new-revision
- path: .yamato/_abv.yml#smoke_test_playmode_2020.1
Expand Down
9 changes: 7 additions & 2 deletions .yamato/ruamel/jobs/abv/abv_all_project_ci_nightly.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,14 @@ def __init__(self, editor, projects, test_platforms, nightly_config, target_bran
def get_job_definition(self, editor, projects, test_platforms, extra_dependencies, target_branch):

# define dependencies
dependencies = [{
dependencies = [
{
'path': f'{abv_filepath()}#{abv_job_id_all_project_ci(editor["version"])}',
'rerun': editor["rerun_strategy"]}]
'rerun': editor["rerun_strategy"]},
{
'path': f'{templates_filepath()}#{template_job_id_test_all(editor["version"])}',
'rerun': editor["rerun_strategy"]
}]

for test_platform in test_platforms: # TODO replace with all_smoke_tests if rerun strategy can override lower level ones
dependencies.append({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Fixed
- Fixed camera from always rendering into a RenderTexture, this caused un-needed performance slowdown

## [7.1.7] - 2019-12-3
## [7.1.7] - 2019-12-03
- Editor will force text serialization to occur on one line

## [7.1.6] - 2019-11-22
Expand Down Expand Up @@ -137,14 +137,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Physics.autoSyncTransforms property now defaults to false.
- Physics2D.autoSyncTransforms property now defaults to false.

## [1.1.0] - 2018-24-10
## [1.1.0] - 2018-10-24

### Changed
- Updating LW Version
- AndroidTVCompatibility to false


## [1.0.6] - 2018-24-09
## [1.0.6] - 2018-09-24

### Changed
- Oculus XR settings default to dash support and depth export enabled.
Expand Down Expand Up @@ -182,7 +182,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Removed Vertex Lighting from all lightweight assets
- Added soft shadows to Lightweight high quality and medium quality assets

## [1.0.0] - 2018-2-25
## [1.0.0] - 2018-02-25

### Added
- Sample static meshes to show best practices
Expand All @@ -195,17 +195,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Additional setting and lighting polish
- Removing basic content (red cube)

## [0.0.5] - 2018-1-29
## [0.0.5] - 2018-01-29

### Added
- cinemachine and text mesh pro packages

## [0.0.4] - 2018-1-29
## [0.0.4] - 2018-01-29

### Added
- cinemachine and text mesh pro packages

## [0.0.3] - 2018-1-26
## [0.0.3] - 2018-01-26

### Changed
- Updating Shadergraph and lightweight to new version
Expand Down