This repository was archived by the owner on Jan 18, 2022. It is now read-only.
File tree 3 files changed +12
-4
lines changed
workers/unity/Packages/io.improbable.gdk.core
3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 17
17
- Upgrade to Worker SDK v14.8.0. [ #1458 ] ( https://github.com/spatialos/gdk-for-unity/pull/1458 )
18
18
- Migrated launch configurations to latest game templates. [ #1457 ] ( https://github.com/spatialos/gdk-for-unity/pull/1457 )
19
19
- Multithreaded component serialization through ` SystemBase ` jobs. [ #1454 ] ( https://github.com/spatialos/gdk-for-unity/pull/1454 )
20
+ - Upgrade Unity Burst to 1.3.5. [ #1467 ] ( https://github.com/spatialos/gdk-for-unity/pull/1467 )
20
21
21
22
### Fixed
22
23
Original file line number Diff line number Diff line change @@ -86,6 +86,10 @@ function main {
86
86
}
87
87
88
88
function anyMatchingTargets {
89
+ if ! [[ -z " ${PERF_BRANCH_OVERRIDE:- } " ]]; then
90
+ return 0
91
+ fi
92
+
89
93
for configId in ` seq ${JOB_ID} ${NUM_JOBS} $(( ${NUM_CONFIGS} - 1 )) `
90
94
do
91
95
local branchFilter=$( jq -r .[${configId} ].branchFilter ${CONFIG_FILE} )
@@ -109,9 +113,11 @@ function runTests {
109
113
110
114
local branchFilter=$( jq -r .[${configId} ].branchFilter ${CONFIG_FILE} )
111
115
112
- if ! [[ ${BRANCH_NAME} =~ ${branchFilter} ]]; then
113
- echo " Skipping target as current branch does not match regex '${branchFilter} '."
114
- return
116
+ if [[ -z " ${PERF_BRANCH_OVERRIDE:- } " ]]; then
117
+ if ! [[ ${BRANCH_NAME} =~ ${branchFilter} ]]; then
118
+ echo " Skipping target as current branch does not match regex '${branchFilter} '."
119
+ return
120
+ fi
115
121
fi
116
122
117
123
local args=()
Original file line number Diff line number Diff line change 9
9
"io.improbable.worker.sdk" : " 0.3.10" ,
10
10
"io.improbable.gdk.tools" : " 0.3.10" ,
11
11
"io.improbable.gdk.testutils" : " 0.3.10" ,
12
- "com.unity.entities" : " 0.14.0-preview.18"
12
+ "com.unity.entities" : " 0.14.0-preview.18" ,
13
+ "com.unity.burst" : " 1.3.5"
13
14
}
14
15
}
You can’t perform that action at this time.
0 commit comments