projects
/
platform
/
upstream
/
dotnet
/
runtime.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6a6cccb
)
ARM64: Enable Daily Job for GcStress0x3
author
Kyungwoo Lee
<kyulee@microsoft.com>
Thu, 7 Jul 2016 21:45:02 +0000
(14:45 -0700)
committer
Kyungwoo Lee
<kyulee@microsoft.com>
Thu, 7 Jul 2016 21:45:02 +0000
(14:45 -0700)
Commit migrated from https://github.com/dotnet/coreclr/commit/
81003fbf84cd8882a63e29a15d381ecab375fbc0
src/coreclr/netci.groovy
patch
|
blob
|
history
diff --git
a/src/coreclr/netci.groovy
b/src/coreclr/netci.groovy
index
3647dca
..
2bbd1f0
100755
(executable)
--- a/
src/coreclr/netci.groovy
+++ b/
src/coreclr/netci.groovy
@@
-493,7
+493,14
@@
def static addTriggers(def job, def branch, def isPR, def architecture, def os,
case 'gcstress0x3':
if (os != 'CentOS7.1' && !(os in bidailyCrossList)) {
assert (os == 'Windows_NT') || (os in Constants.crossList)
- Utilities.addPeriodicTrigger(job, '@weekly')
+ if (architecture == 'arm64') {
+ assert (os == 'Windows_NT')
+ Utilities.addPeriodicTrigger(job, '@daily')
+ addEmailPublisher(job, 'dotnetonarm64@microsoft.com')
+ }
+ else {
+ Utilities.addPeriodicTrigger(job, '@weekly')
+ }
}
break
case 'gcstress0xc':