Skip to content

Commit eff9bff

Browse files
committed
Update to Unity 2018.4 in the pipelines
1 parent d4e06cb commit eff9bff

File tree

6 files changed

+33
-10
lines changed

6 files changed

+33
-10
lines changed

pipelines/README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Pipelines
2+
3+
## Each file and their use
4+
5+
### ci-daily
6+
7+
This runs on externally-facing machines daily. It validates the repo on both Unity 2018 and Unity 2019.
8+
9+
### ci-packaging-dontpublish
10+
11+
This runs on externally-facing machines whenever a PR is merged.
12+
13+
### ci-packaging-internal
14+
15+
This runs on internally-facing machines whenever a PR is merged.
16+
17+
### ci-release
18+
19+
This runs on internally-facing machines manually. It packages and signs the packages for public release.
20+
21+
### pr
22+
23+
This runs on externally-facing machines as part of PR validation.

pipelines/ci-daily.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# CI build for developer builds.
22

33
variables:
4-
Unity2018Version: Unity2018.3.7f1
4+
Unity2018Version: Unity2018.4.6f1
55
Unity2019Version: Unity2019.2.0f1
66
MRTKVersion: 2.3.0
77
packagingEnabled: false
@@ -25,7 +25,7 @@ jobs:
2525
pool:
2626
name: On-Prem Unity
2727
demands:
28-
- Unity2018.3.7f1
28+
- Unity2018.4.6f1
2929
- COG-UnityCache-WUS2-01
3030
- SDK_18362 -equals TRUE
3131
steps:

pipelines/ci-packaging-dontpublish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# CI build producing developer packages.
22

33
variables:
4-
Unity2018Version: Unity2018.3.7f1
4+
Unity2018Version: Unity2018.4.6f1
55
Unity2019Version: Unity2019.2.0f1
66
MRTKVersion: 2.3.0
77

@@ -11,7 +11,7 @@ jobs:
1111
pool:
1212
name: On-Prem Unity
1313
demands:
14-
- Unity2018.3.7f1
14+
- Unity2018.4.6f1
1515
- COG-UnityCache-WUS2-01
1616
- SDK_18362 -equals TRUE
1717
steps:

pipelines/ci-packaging-internal.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# CI build producing developer packages.
22

33
variables:
4-
Unity2018Version: Unity2018.3.7f1
4+
Unity2018Version: Unity2018.4.12f1
55
Unity2019Version: Unity2019.2.0f1
66
MRTKVersion: 2.3.0
77

@@ -11,7 +11,7 @@ jobs:
1111
pool:
1212
name: Analog On-Prem
1313
demands:
14-
- Unity2018.3.7f1
14+
- Unity2018.4.12f1
1515
- COG-UnityCache-WUS2-01
1616
- SDK_18362 -equals TRUE
1717
steps:

pipelines/ci-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
name: $(Date:yyyyMMdd)v$(Rev:r)
55

66
variables:
7-
Unity2018Version: Unity2018.3.7f1
7+
Unity2018Version: Unity2018.4.12f1
88
Unity2019Version: Unity2019.2.0f1
99
MRTKVersion: 2.3.0 # Major.Minor.Patch
1010
MRTKReleaseTag: '' # final version component, e.g. 'RC2.1' or empty string
@@ -15,7 +15,7 @@ jobs:
1515
pool:
1616
name: Analog On-Prem
1717
demands:
18-
- Unity2018.3.7f1 # variable expansion not allowed here
18+
- Unity2018.4.12f1 # variable expansion not allowed here
1919
- COG-UnityCache-WUS2-01
2020
- SDK_18362 -equals TRUE
2121
steps:

pipelines/pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Build for PR validation.
22

33
variables:
4-
Unity2018Version: Unity2018.3.7f1
4+
Unity2018Version: Unity2018.4.6f1
55
Unity2019Version: Unity2019.2.0f1
66
MRTKVersion: 2.3.0
77

@@ -11,7 +11,7 @@ jobs:
1111
pool:
1212
name: On-Prem Unity
1313
demands:
14-
- Unity2018.3.7f1
14+
- Unity2018.4.6f1
1515
- COG-UnityCache-WUS2-01
1616
- SDK_18362 -equals TRUE
1717
steps:

0 commit comments

Comments
 (0)