1 Star 0 Fork 0

1184424167/coreclr

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
netci.groovy 139.26 KB
一键复制 编辑 原始数据 按行查看 历史
Roman Artemev 提交于 2017-06-13 07:42 +08:00 . Fix legacyjit CI testing
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712
// Import the utility functionality.
import jobs.generation.*
// The input project name (e.g. dotnet/coreclr)
def project = GithubProject
// The input branch name (e.g. master)
def branch = GithubBranchName
def projectFolder = Utilities.getFolderName(project) + '/' + Utilities.getFolderName(branch)
// Create a folder for JIT stress jobs and associated folder views
folder('jitstress')
Utilities.addStandardFolderView(this, 'jitstress', project)
// Create a folder for testing via illink
folder('illink')
Utilities.addStandardFolderView(this, 'illink', project)
def static getOSGroup(def os) {
def osGroupMap = ['Ubuntu':'Linux',
'RHEL7.2': 'Linux',
'Ubuntu16.04': 'Linux',
'Ubuntu16.10': 'Linux',
'Debian8.4':'Linux',
'Fedora24':'Linux',
'OSX10.12':'OSX',
'Windows_NT':'Windows_NT',
'FreeBSD':'FreeBSD',
'CentOS7.1': 'Linux',
'OpenSUSE42.1': 'Linux',
'Tizen': 'Linux']
def osGroup = osGroupMap.get(os, null)
assert osGroup != null : "Could not find os group for ${os}"
return osGroupMap[os]
}
// We use this class (vs variables) so that the static functions can access data here.
class Constants {
// Innerloop build OS's
// The Windows_NT_BuildOnly OS is a way to speed up the Non-NT builds temporarily by avoiding
// test execution in the build flow runs. It generates the exact same build
// as Windows_NT but without the tests.
def static osList = [
'Ubuntu',
'Debian8.4',
'OSX10.12',
'Windows_NT',
'Windows_NT_BuildOnly',
'FreeBSD',
'CentOS7.1',
'OpenSUSE42.1',
'RHEL7.2',
'Ubuntu16.04',
'Ubuntu16.10',
'Fedora24',
'Tizen']
def static crossList = ['Ubuntu', 'OSX10.12', 'CentOS7.1', 'RHEL7.2', 'Debian8.4']
// This is a set of JIT stress modes combined with the set of variables that
// need to be set to actually enable that stress mode. The key of the map is the stress mode and
// the values are the environment variables
def static jitStressModeScenarios = [
'minopts' : ['COMPlus_JITMinOpts' : '1'],
'forcerelocs' : ['COMPlus_ForceRelocs' : '1'],
'jitstress1' : ['COMPlus_JitStress' : '1'],
'jitstress2' : ['COMPlus_JitStress' : '2'],
'jitstressregs1' : ['COMPlus_JitStressRegs' : '1'],
'jitstressregs2' : ['COMPlus_JitStressRegs' : '2'],
'jitstressregs3' : ['COMPlus_JitStressRegs' : '3'],
'jitstressregs4' : ['COMPlus_JitStressRegs' : '4'],
'jitstressregs8' : ['COMPlus_JitStressRegs' : '8'],
'jitstressregs0x10' : ['COMPlus_JitStressRegs' : '0x10'],
'jitstressregs0x80' : ['COMPlus_JitStressRegs' : '0x80'],
'jitstressregs0x1000' : ['COMPlus_JitStressRegs' : '0x1000'],
'jitstress2_jitstressregs1' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '1'],
'jitstress2_jitstressregs2' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '2'],
'jitstress2_jitstressregs3' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '3'],
'jitstress2_jitstressregs4' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '4'],
'jitstress2_jitstressregs8' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '8'],
'jitstress2_jitstressregs0x10' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '0x10'],
'jitstress2_jitstressregs0x80' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '0x80'],
'jitstress2_jitstressregs0x1000' : ['COMPlus_JitStress' : '2', 'COMPlus_JitStressRegs' : '0x1000'],
'tailcallstress' : ['COMPlus_TailcallStress' : '1'],
'jitsse2only' : ['COMPlus_EnableAVX' : '0', 'COMPlus_EnableSSE3_4' : '0'],
'corefx_baseline' : [ : ], // corefx baseline
'corefx_minopts' : ['COMPlus_JITMinOpts' : '1'],
'corefx_jitstress1' : ['COMPlus_JitStress' : '1'],
'corefx_jitstress2' : ['COMPlus_JitStress' : '2'],
'corefx_jitstressregs1' : ['COMPlus_JitStressRegs' : '1'],
'corefx_jitstressregs2' : ['COMPlus_JitStressRegs' : '2'],
'corefx_jitstressregs3' : ['COMPlus_JitStressRegs' : '3'],
'corefx_jitstressregs4' : ['COMPlus_JitStressRegs' : '4'],
'corefx_jitstressregs8' : ['COMPlus_JitStressRegs' : '8'],
'corefx_jitstressregs0x10' : ['COMPlus_JitStressRegs' : '0x10'],
'corefx_jitstressregs0x80' : ['COMPlus_JitStressRegs' : '0x80'],
'corefx_jitstressregs0x1000' : ['COMPlus_JitStressRegs' : '0x1000'],
'gcstress0x3' : ['COMPlus_GCStress' : '0x3'],
'gcstress0xc' : ['COMPlus_GCStress' : '0xC'],
'zapdisable' : ['COMPlus_ZapDisable' : '1', 'COMPlus_ReadyToRun' : '0'],
'heapverify1' : ['COMPlus_HeapVerify' : '1'],
'gcstress0xc_zapdisable' : ['COMPlus_GCStress' : '0xC', 'COMPlus_ZapDisable' : '1', 'COMPlus_ReadyToRun' : '0'],
'gcstress0xc_zapdisable_jitstress2' : ['COMPlus_GCStress' : '0xC', 'COMPlus_ZapDisable' : '1', 'COMPlus_ReadyToRun' : '0', 'COMPlus_JitStress' : '2'],
'gcstress0xc_zapdisable_heapverify1' : ['COMPlus_GCStress' : '0xC', 'COMPlus_ZapDisable' : '1', 'COMPlus_ReadyToRun' : '0', 'COMPlus_HeapVerify' : '1'],
'gcstress0xc_jitstress1' : ['COMPlus_GCStress' : '0xC', 'COMPlus_JitStress' : '1'],
'gcstress0xc_jitstress2' : ['COMPlus_GCStress' : '0xC', 'COMPlus_JitStress' : '2'],
'gcstress0xc_minopts_heapverify1' : ['COMPlus_GCStress' : '0xC', 'COMPlus_JITMinOpts' : '1', 'COMPlus_HeapVerify' : '1']
]
// This is a set of r2r jit stress scenarios
def static r2rJitStressScenarios = [
'r2r_jitstress1',
'r2r_jitstress2',
'r2r_jitstressregs1',
'r2r_jitstressregs2',
'r2r_jitstressregs3',
'r2r_jitstressregs4',
'r2r_jitstressregs8',
'r2r_jitstressregs0x10',
'r2r_jitstressregs0x80',
'r2r_jitstressregs0x1000',
'r2r_jitminopts',
'r2r_jitforcerelocs']
// This is the basic set of scenarios
def static basicScenarios = [
'default',
'pri1',
'ilrt',
'r2r',
'pri1r2r',
'gcstress15_pri1r2r',
'longgc',
'coverage',
'formatting',
'gcsimulator',
'jitdiff',
'standalone_gc',
'gc_reliability_framework',
'illink'] + r2rJitStressScenarios
def static configurationList = ['Debug', 'Checked', 'Release']
// This is the set of architectures
def static architectureList = ['arm', 'arm64', 'x64', 'x86', 'x86lb']
}
def static setMachineAffinity(def job, def os, def architecture, def options = null) {
if (architecture == 'arm64' && os == 'Windows_NT') {
Utilities.setMachineAffinity(job, os, 'latest-arm64');
} else if (architecture == 'arm64' && os != 'Windows_NT' && options == null) {
Utilities.setMachineAffinity(job, os, 'arm64-small-page-size');
} else if (architecture == 'arm64' && os != 'Windows_NT' && options['large_pages'] == true) {
Utilities.setMachineAffinity(job, os, 'arm64-huge-page-size');
} else if (architecture == 'arm64' && os != 'Windows_NT' && options['is_build_only'] == true) {
Utilities.setMachineAffinity(job, os, 'arm64-cross-latest');
} else if ((architecture == 'arm') && (os == 'Ubuntu' || os == 'Ubuntu16.04' || os == 'Tizen')) {
Utilities.setMachineAffinity(job, 'Ubuntu', 'arm-cross-latest');
} else {
Utilities.setMachineAffinity(job, os, 'latest-or-auto');
}
}
def static isJITStressJob(def scenario) {
return Constants.jitStressModeScenarios.containsKey(scenario) ||
(Constants.r2rJitStressScenarios.indexOf(scenario) != -1)
}
def static isGCStressRelatedTesting(def scenario) {
// The 'gcstress15_pri1r2r' scenario is a basic scenario.
// Detect it and make it a GCStress related.
if (scenario == 'gcstress15_pri1r2r')
{
return true;
}
def gcStressTestEnvVars = [ 'COMPlus_GCStress', 'COMPlus_ZapDisable', 'COMPlus_HeapVerify']
def scenarioName = scenario.toLowerCase()
def isGCStressTesting = false
Constants.jitStressModeScenarios[scenario].each{ k, v ->
if (k in gcStressTestEnvVars) {
isGCStressTesting = true;
}
}
return isGCStressTesting
}
def static isCorefxTesting(def scenario) {
def corefx_prefix = 'corefx_'
if (scenario.length() < corefx_prefix.length()) {
return false
}
return scenario.substring(0,corefx_prefix.length()) == corefx_prefix
}
def static isR2R(def scenario) {
return (scenario == 'r2r' || scenario == 'pri1r2r')
}
def static isCoverage(def scenario) {
return (scenario == 'coverage')
}
def static isLongGc(def scenario) {
return (scenario == 'longgc' || scenario == 'gcsimulator')
}
def static isJitDiff(def scenario) {
return (scenario == 'jitdiff')
}
def static isGcReliabilityFramework(def scenario) {
return (scenario == 'gc_reliability_framework')
}
def static scenarioNeedsPri1Build(def scenario) {
return (scenario == 'pri1' || scenario == 'pri1r2r' || scenario == 'gcstress15_pri1r2r'|| scenario == 'coverage' || isGcReliabilityFramework(scenario))
}
def static setTestJobTimeOut(newJob, scenario) {
if (isGCStressRelatedTesting(scenario)) {
Utilities.setJobTimeout(newJob, 4320)
}
else if (isCorefxTesting(scenario)) {
Utilities.setJobTimeout(newJob, 360)
}
else if (Constants.jitStressModeScenarios.containsKey(scenario)) {
Utilities.setJobTimeout(newJob, 240)
}
else if (isR2R(scenario)) {
Utilities.setJobTimeout(newJob, 240)
}
else if (isCoverage(scenario)) {
Utilities.setJobTimeout(newJob, 1440)
}
else if (isLongGc(scenario)) {
Utilities.setJobTimeout(newJob, 1440)
}
else if (isJitDiff(scenario)) {
Utilities.setJobTimeout(newJob, 240)
}
else if (isGcReliabilityFramework(scenario)) {
Utilities.setJobTimeout(newJob, 1440)
}
// Non-test jobs use the default timeout value.
}
def static getJobFolder(def scenario) {
if (isJITStressJob(scenario)) {
return 'jitstress'
}
if (scenario == 'illink') {
return 'illink'
}
return ''
}
def static getStressModeDisplayName(def scenario) {
def displayStr = ''
Constants.jitStressModeScenarios[scenario].each{ k, v ->
def prefixLength = 'COMPlus_'.length()
if (k.length() >= prefixLength) {
def modeName = k.substring(prefixLength, k.length())
displayStr += ' ' + modeName + '=' + v
}
}
return displayStr
}
def static getR2RStressModeDisplayName(def scenario) {
// Assume the scenario name is one from the r2rJitStressScenarios list, and remove its
// "r2r_" prefix.
def displayStr = scenario
def prefixLength = 'r2r_'.length()
if (displayStr.length() >= prefixLength) {
displayStr = displayStr.substring(prefixLength, displayStr.length())
}
return displayStr
}
// Generates the string for creating a file that sets environment variables
// that makes it possible to run stress modes. Writes the script to the file
// specified by the stepScriptLocation parameter.
def static genStressModeScriptStep(def os, def stressModeName, def stressModeVars, def stepScriptLocation) {
def stepScript = ''
if (os == 'Windows_NT') {
stepScript += "echo Creating TestEnv Script for ${stressModeName}\r\n"
stepScript += "del ${stepScriptLocation}\r\n"
// Timeout in ms, default is 10 minutes. For stress
// modes up this to 30 minutes
def timeout = 1800000
// Set the Timeout
stepScript += "set __TestTimeout=${timeout}\r\n"
stepScript += "echo. > ${stepScriptLocation}\r\n"
stressModeVars.each{ k, v ->
// Write out what we are writing to the script file
stepScript += "echo Setting ${k}=${v}\r\n"
// Write out the set itself to the script file`
stepScript += "echo set ${k}=${v} >> ${stepScriptLocation}\r\n"
}
}
else {
stepScript += "echo Setting variables for ${stressModeName}\n"
stepScript += "echo \\#\\!/usr/bin/env bash > ${stepScriptLocation}\n"
stressModeVars.each{ k, v ->
// Write out what we are writing to the script file
stepScript += "echo Setting ${k}=${v}\n"
// Write out the set itself to the script file`
stepScript += "echo export ${k}=${v} >> ${stepScriptLocation}\n"
}
stepScript += "chmod +x ${stepScriptLocation}\n"
}
return stepScript
}
// Calculates the name of the build job based on some typical parameters.
//
def static getJobName(def configuration, def architecture, def os, def scenario, def isBuildOnly) {
// If the architecture is x64, do not add that info into the build name.
// Need to change around some systems and other builds to pick up the right builds
// to do that.
def suffix = scenario != 'default' ? "_${scenario}" : '';
if (isBuildOnly) {
suffix += '_bld'
}
def baseName = ''
switch (architecture) {
case 'x64':
if (scenario == 'default') {
// For now we leave x64 off of the name for compatibility with other jobs
baseName = configuration.toLowerCase() + '_' + os.toLowerCase()
}
else if (scenario == 'formatting') {
// we don't care about the configuration for the formatting job. It runs all configs
baseName = architecture.toLowerCase() + '_' + os.toLowerCase()
}
else {
baseName = architecture.toLowerCase() + '_' + configuration.toLowerCase() + '_' + os.toLowerCase()
}
break
case 'arm64':
if (os.toLowerCase() == "windows_nt") {
// These are cross builds
baseName = architecture.toLowerCase() + '_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
}
else {
// Defaults to a small page size set of machines.
baseName = architecture.toLowerCase() + '_' + configuration.toLowerCase() + '_' + "small_page_size"
}
break
case 'arm':
// These are cross builds
if (os == 'Tizen') {
// ABI: softfp
baseName = 'armel_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
}
else {
baseName = architecture.toLowerCase() + '_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
}
break
case 'x86':
case 'x86lb':
baseName = architecture.toLowerCase() + '_' + configuration.toLowerCase() + '_' + os.toLowerCase()
break
default:
println("Unknown architecture: ${architecture}");
assert false
break
}
return baseName + suffix
}
def static addNonPRTriggers(def job, def branch, def isPR, def architecture, def os, def configuration, def scenario, def isFlowJob, def isWindowsBuildOnlyJob, def bidailyCrossList) {
// Check scenario.
switch (scenario) {
case 'default':
switch (architecture) {
case 'x64':
case 'x86':
case 'x86lb':
if (architecture == 'x86' && os == 'Ubuntu') {
Utilities.addPeriodicTrigger(job, '@daily')
}
else if (isFlowJob || os == 'Windows_NT' || !(os in Constants.crossList)) {
Utilities.addGithubPushTrigger(job)
}
break
case 'arm':
Utilities.addGithubPushTrigger(job)
break
case 'arm64':
Utilities.addGithubPushTrigger(job)
break
default:
println("Unknown architecture: ${architecture}");
assert false
break
}
break
case 'pri1':
// Pri one gets a push trigger, and only for release
if (architecture == 'x64') {
if (configuration == 'Release') {
// We expect release jobs to be Windows, or in the cross list
assert (os == 'Windows_NT') || (os in Constants.crossList)
if (!os in bidailyCrossList) {
if (isFlowJob || os == 'Windows_NT') {
Utilities.addGithubPushTrigger(job)
}
}
else {
if (isFlowJob) {
Utilities.addPeriodicTrigger(job, 'H H/12 * * *')
}
}
}
}
break
case 'r2r':
//r2r jobs that aren't pri1 can only be triggered by phrase
break
case 'pri1r2r':
assert !(os in bidailyCrossList)
//pri1 r2r gets a push trigger for checked/release
if (configuration == 'Checked' || configuration == 'Release') {
assert (os == 'Windows_NT') || (os in Constants.crossList)
if (architecture == 'x64' && os != 'OSX10.12') {
//Flow jobs should be Windows, Ubuntu, OSX0.12, or CentOS
if (isFlowJob || os == 'Windows_NT') {
Utilities.addGithubPushTrigger(job)
}
// OSX10.12 pri1r2r jobs should only run every 12 hours, not daily.
} else if (architecture == 'x64' && os == 'OSX10.12'){
if (isFlowJob) {
Utilities.addPeriodicTrigger(job, 'H H/12 * * *')
}
}
// For x86, only add per-commit jobs for Windows
else if (architecture == 'x86' || architecture == 'x86lb') {
if (os == 'Windows_NT') {
Utilities.addGithubPushTrigger(job)
}
}
// arm64 pri1r2r jobs should only run every 12 hours.
else if (architecture == 'arm64') {
if (os == 'Windows_NT') {
Utilities.addPeriodicTrigger(job, 'H H/12 * * *')
// TODO: Add once external email sending is available again
// addEmailPublisher(job, 'dotnetonarm64@microsoft.com')
}
}
}
break
case 'r2r_jitstress1':
case 'r2r_jitstress2':
case 'r2r_jitstressregs1':
case 'r2r_jitstressregs2':
case 'r2r_jitstressregs3':
case 'r2r_jitstressregs4':
case 'r2r_jitstressregs8':
case 'r2r_jitstressregs0x10':
case 'r2r_jitstressregs0x80':
case 'r2r_jitstressregs0x1000':
case 'r2r_jitminopts':
case 'r2r_jitforcerelocs':
case 'gcstress15_pri1r2r':
assert !(os in bidailyCrossList)
// GCStress=C is currently not supported on OS X
if (os == 'OSX10.12' && isGCStressRelatedTesting(scenario)) {
break
}
//GC Stress 15 pri1 r2r gets a push trigger for checked/release
if (configuration == 'Checked' || configuration == 'Release') {
assert (os == 'Windows_NT') || (os in Constants.crossList)
if (architecture == 'x64') {
//Flow jobs should be Windows, Ubuntu, OSX10.12, or CentOS
if (isFlowJob || os == 'Windows_NT') {
// Add a weekly periodic trigger
Utilities.addPeriodicTrigger(job, 'H H * * 3,6') // some time every Wednesday and Saturday
}
}
// For x86, only add per-commit jobs for Windows
else if (architecture == 'x86') {
if (os == 'Windows_NT') {
Utilities.addPeriodicTrigger(job, 'H H * * 3,6') // some time every Wednesday and Saturday
}
}
}
break
case 'longgc':
assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
assert configuration == 'Release'
assert architecture == 'x64'
Utilities.addPeriodicTrigger(job, '@daily')
// TODO: Add once external email sending is available again
// addEmailPublisher(job, 'dotnetgctests@microsoft.com')
break
case 'gcsimulator':
assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
assert configuration == 'Release'
assert architecture == 'x64'
Utilities.addPeriodicTrigger(job, 'H H * * 3,6') // some time every Wednesday and Saturday
// TODO: Add once external email sending is available again
// addEmailPublisher(job, 'dotnetgctests@microsoft.com')
break
case 'standalone_gc':
assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
assert (configuration == 'Release' || configuration == 'Checked')
// TODO: Add once external email sending is available again
// addEmailPublisher(job, 'dotnetgctests@microsoft.com')
Utilities.addPeriodicTrigger(job, '@weekly')
break
case 'gc_reliability_framework':
assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
assert (configuration == 'Release' || configuration == 'Checked')
// Only triggered by phrase.
break
case 'ilrt':
assert !(os in bidailyCrossList)
// ILASM/ILDASM roundtrip one gets a daily build, and only for release
if (architecture == 'x64' && configuration == 'Release') {
// We don't expect to see a job generated except in these scenarios
assert (os == 'Windows_NT') || (os in Constants.crossList)
if (isFlowJob || os == 'Windows_NT') {
Utilities.addPeriodicTrigger(job, '@daily')
}
}
break
case 'jitdiff':
assert (os == 'Ubuntu' || os == 'Windows_NT' || os == 'OSX10.12')
assert configuration == 'Checked'
assert (architecture == 'x64' || architecture == 'x86')
Utilities.addGithubPushTrigger(job)
break
case 'coverage':
assert (os == 'Ubuntu' || os == 'Windows_NT')
assert configuration == 'Release'
assert architecture == 'x64'
Utilities.addPeriodicTrigger(job, '@weekly')
break
case 'formatting':
assert (os == 'Windows_NT' || os == "Ubuntu")
assert architecture == 'x64'
Utilities.addGithubPushTrigger(job)
break
case 'jitstressregs1':
case 'jitstressregs2':
case 'jitstressregs3':
case 'jitstressregs4':
case 'jitstressregs8':
case 'jitstressregs0x10':
case 'jitstressregs0x80':
case 'jitstressregs0x1000':
case 'minopts':
case 'forcerelocs':
case 'jitstress1':
case 'jitstress2':
case 'jitstress2_jitstressregs1':
case 'jitstress2_jitstressregs2':
case 'jitstress2_jitstressregs3':
case 'jitstress2_jitstressregs4':
case 'jitstress2_jitstressregs8':
case 'jitstress2_jitstressregs0x10':
case 'jitstress2_jitstressregs0x80':
case 'jitstress2_jitstressregs0x1000':
case 'tailcallstress':
case 'jitsse2only':
case 'corefx_baseline':
case 'corefx_minopts':
case 'corefx_jitstress1':
case 'corefx_jitstress2':
case 'corefx_jitstressregs1':
case 'corefx_jitstressregs2':
case 'corefx_jitstressregs3':
case 'corefx_jitstressregs4':
case 'corefx_jitstressregs8':
case 'corefx_jitstressregs0x10':
case 'corefx_jitstressregs0x80':
case 'corefx_jitstressregs0x1000':
case 'zapdisable':
if (os != 'CentOS7.1' && !(os in bidailyCrossList)) {
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addPeriodicTrigger(job, '@daily')
}
break
case 'heapverify1':
case 'gcstress0x3':
if (os != 'CentOS7.1' && !(os in bidailyCrossList)) {
assert (os == 'Windows_NT') || (os in Constants.crossList)
if (architecture == 'arm64') {
if (os == 'Windows_NT') {
Utilities.addPeriodicTrigger(job, '@daily')
}
// TODO: Add once external email sending is available again
// addEmailPublisher(job, 'dotnetonarm64@microsoft.com')
}
else {
Utilities.addPeriodicTrigger(job, '@weekly')
}
}
break
case 'gcstress0xc':
case 'gcstress0xc_zapdisable':
case 'gcstress0xc_zapdisable_jitstress2':
case 'gcstress0xc_zapdisable_heapverify1':
case 'gcstress0xc_jitstress1':
case 'gcstress0xc_jitstress2':
case 'gcstress0xc_minopts_heapverify1':
// GCStress=C is currently not supported on OS X
if (os != 'CentOS7.1' && os != 'OSX10.12' && !(os in bidailyCrossList)) {
assert (os == 'Windows_NT') || (os in Constants.crossList)
if (architecture == 'arm64') {
// TODO: Enable a periodic trigger after tests are updated.
// Utilities.addPeriodicTrigger(job, '@daily')
// TODO: Add once external email sending is available again
// addEmailPublisher(job, 'dotnetonarm64@microsoft.com')
}
else {
Utilities.addPeriodicTrigger(job, '@weekly')
}
}
break
case 'illink':
// Testing on other operating systems TBD
assert (os == 'Windows_NT' || os == 'Ubuntu')
if (architecture == 'x64' || architecture == 'x86') {
if (configuration == 'Checked') {
Utilities.addPeriodicTrigger(job, '@daily')
}
}
break
default:
println("Unknown scenario: ${scenario}");
assert false
break
}
return
}
// **************************
// Define the basic inner loop builds for PR and commit. This is basically just the set
// of coreclr builds over linux/osx 10.12/freebsd/windows and debug/release/checked. In addition, the windows
// builds will do a couple extra steps.
// **************************
// Adds a trigger for the PR build if one is needed. If isFlowJob is true, then this is the
// flow job that rolls up the build and test for non-windows OS's. // If the job is a windows build only job,
// it's just used for internal builds
// If you add a job with a trigger phrase, please add that phrase to coreclr/Documentation/project-docs/ci-trigger-phrases.md
def static addTriggers(def job, def branch, def isPR, def architecture, def os, def configuration, def scenario, def isFlowJob, def isWindowsBuildOnlyJob) {
if (isWindowsBuildOnlyJob) {
return
}
def bidailyCrossList = ['RHEL7.2', 'Debian8.4']
// Non pull request builds.
if (!isPR) {
addNonPRTriggers(job, branch, isPR, architecture, os, configuration, scenario, isFlowJob, isWindowsBuildOnlyJob, bidailyCrossList)
return
}
// Pull request builds. Generally these fall into two categories: default triggers and on-demand triggers
// We generally only have a distinct set of default triggers but a bunch of on-demand ones.
def osGroup = getOSGroup(os)
switch (architecture) {
case 'x64': // editor brace matching: {
if (scenario == 'coverage') {
assert configuration == 'Release'
if (os == 'Ubuntu') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Coverage Build & Test", "(?i).*test\\W+coverage.*")
}
break
}
if (scenario == 'formatting') {
assert configuration == 'Checked'
if (os == 'Windows_NT' || os == 'Ubuntu') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Formatting")
}
break
}
switch (os) {
// OpenSUSE, Debian & RedHat get trigger phrases for pri 0 build, and pri 1 build & test
case 'Debian8.4':
case 'RHEL7.2':
if (scenario == 'default') {
assert !isFlowJob
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build", "(?i).*test\\W+${os}.*")
}
else if (scenario == 'pri1' && isFlowJob) {
assert (configuration == 'Release')
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Pri 1 Build & Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
}
break
case 'Ubuntu16.04':
assert !isFlowJob
assert scenario == 'default'
// Distinguish with the other architectures (arm and x86)
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build", "(?i).*test\\W+${os}\\W+${architecture}.*")
break
case 'Fedora24':
case 'Ubuntu16.10':
case 'OpenSUSE42.1':
assert !isFlowJob
assert scenario == 'default'
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build", "(?i).*test\\W+${os}\\W+.*")
break
case 'Ubuntu':
if (scenario == 'illink') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} via ILLink", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
break
}
// fall through
case 'OSX10.12':
// Triggers on the non-flow jobs aren't necessary here
// Corefx testing uses non-flow jobs.
if (!isFlowJob && !isCorefxTesting(scenario)) {
break
}
switch (scenario) {
case 'default':
// Ubuntu uses checked for default PR tests
if (configuration == 'Checked') {
// Default trigger
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test")
}
break
case 'pri1':
if (configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Priority 1 Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
}
break
case 'jitdiff':
if (configuration == 'Checked') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Jit Diff Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
}
break
case 'ilrt':
if (configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} IL RoundTrip Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
}
break
case 'r2r':
if (configuration == 'Release' || configuration == 'Checked') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} R2R pri0 Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'pri1r2r':
if (configuration == 'Release' || configuration == 'Checked') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} R2R pri1 Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'gcstress15_pri1r2r':
if (configuration == 'Release' || configuration == 'Checked') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GCStress 15 R2R pri1 Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'r2r_jitstress1':
case 'r2r_jitstress2':
case 'r2r_jitstressregs1':
case 'r2r_jitstressregs2':
case 'r2r_jitstressregs3':
case 'r2r_jitstressregs4':
case 'r2r_jitstressregs8':
case 'r2r_jitstressregs0x10':
case 'r2r_jitstressregs0x80':
case 'r2r_jitstressregs0x1000':
case 'r2r_jitminopts':
case 'r2r_jitforcerelocs':
if (configuration == 'Release' || configuration == 'Checked') {
def displayStr = getR2RStressModeDisplayName(scenario)
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} R2R Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'longgc':
if (configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Long-Running GC Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'gcsimulator':
if (configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Simulator", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'standalone_gc':
if (configuration == 'Release' || configuration == 'Checked') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Standalone GC", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'gc_reliability_framework':
if (configuration == 'Release' || configuration == 'Checked') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Reliability Framework", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'minopts':
case 'forcerelocs':
case 'jitstress1':
case 'jitstress2':
case 'jitstressregs1':
case 'jitstressregs2':
case 'jitstressregs3':
case 'jitstressregs4':
case 'jitstressregs8':
case 'jitstressregs0x10':
case 'jitstressregs0x80':
case 'jitstressregs0x1000':
case 'jitstress2_jitstressregs1':
case 'jitstress2_jitstressregs2':
case 'jitstress2_jitstressregs3':
case 'jitstress2_jitstressregs4':
case 'jitstress2_jitstressregs8':
case 'jitstress2_jitstressregs0x10':
case 'jitstress2_jitstressregs0x80':
case 'jitstress2_jitstressregs0x1000':
case 'tailcallstress':
case 'jitsse2only':
case 'gcstress0x3':
case 'gcstress0xc':
case 'zapdisable':
case 'heapverify1':
case 'gcstress0xc_zapdisable':
case 'gcstress0xc_zapdisable_jitstress2':
case 'gcstress0xc_zapdisable_heapverify1':
case 'gcstress0xc_jitstress1':
case 'gcstress0xc_jitstress2':
case 'gcstress0xc_minopts_heapverify1':
def displayStr = getStressModeDisplayName(scenario)
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - ${displayStr})",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'corefx_baseline':
case 'corefx_minopts':
case 'corefx_jitstress1':
case 'corefx_jitstress2':
case 'corefx_jitstressregs1':
case 'corefx_jitstressregs2':
case 'corefx_jitstressregs3':
case 'corefx_jitstressregs4':
case 'corefx_jitstressregs8':
case 'corefx_jitstressregs0x10':
case 'corefx_jitstressregs0x80':
case 'corefx_jitstressregs0x1000':
def displayName = ('CoreFx ' + getStressModeDisplayName(scenario)).trim()
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - ${displayName})",
"(?i).*test\\W+${os}\\W+${architecture}\\W+${scenario}.*")
break
default:
println("Unknown scenario: ${scenario}");
assert false
break
}
break
case 'CentOS7.1':
switch (scenario) {
case 'pri1':
if (configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Priority 1 Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
}
break
case 'r2r':
if (configuration == 'Checked' || configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} R2R pri0 Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'pri1r2r':
if (configuration == 'Checked' || configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} R2R pri1 Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'gcstress15_pri1r2r':
if (configuration == 'Release' || configuration == 'Checked') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GCStress 15 R2R pri1 Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'r2r_jitstress1':
case 'r2r_jitstress2':
case 'r2r_jitstressregs1':
case 'r2r_jitstressregs2':
case 'r2r_jitstressregs3':
case 'r2r_jitstressregs4':
case 'r2r_jitstressregs8':
case 'r2r_jitstressregs0x10':
case 'r2r_jitstressregs0x80':
case 'r2r_jitstressregs0x1000':
case 'r2r_jitminopts':
case 'r2r_jitforcerelocs':
if (configuration == 'Release' || configuration == 'Checked') {
def displayStr = getR2RStressModeDisplayName(scenario)
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} R2R Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
default:
break
}
case 'Windows_NT':
switch (scenario) {
case 'default':
// Default trigger
if (configuration == 'Debug') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test")
}
break
case 'pri1':
// Default trigger
if (configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Priority 1 Build and Test")
}
break
case 'jitdiff':
if (configuration == 'Checked') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Jit Diff Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
}
break
case 'ilrt':
if (configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} IL RoundTrip Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
}
break
case 'r2r':
if (configuration == 'Checked' || configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} R2R pri0 Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'pri1r2r':
if (configuration == 'Checked' || configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} R2R pri1 Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'gcstress15_pri1r2r':
if (configuration == 'Release' || configuration == 'Checked') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GCStress 15 R2R pri1 Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'r2r_jitstress1':
case 'r2r_jitstress2':
case 'r2r_jitstressregs1':
case 'r2r_jitstressregs2':
case 'r2r_jitstressregs3':
case 'r2r_jitstressregs4':
case 'r2r_jitstressregs8':
case 'r2r_jitstressregs0x10':
case 'r2r_jitstressregs0x80':
case 'r2r_jitstressregs0x1000':
case 'r2r_jitminopts':
case 'r2r_jitforcerelocs':
if (configuration == 'Release' || configuration == 'Checked') {
def displayStr = getR2RStressModeDisplayName(scenario)
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} R2R Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'longgc':
if (configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Long-Running GC Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'gcsimulator':
if (configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Simulator", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'standalone_gc':
if (configuration == 'Release' || configuration == 'Checked') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Standalone GC", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'gc_reliability_framework':
if (configuration == 'Release' || configuration == 'Checked') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Reliability Framework", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'minopts':
case 'forcerelocs':
case 'jitstress1':
case 'jitstress2':
case 'jitstressregs1':
case 'jitstressregs2':
case 'jitstressregs3':
case 'jitstressregs4':
case 'jitstressregs8':
case 'jitstressregs0x10':
case 'jitstressregs0x80':
case 'jitstressregs0x1000':
case 'jitstress2_jitstressregs1':
case 'jitstress2_jitstressregs2':
case 'jitstress2_jitstressregs3':
case 'jitstress2_jitstressregs4':
case 'jitstress2_jitstressregs8':
case 'jitstress2_jitstressregs0x10':
case 'jitstress2_jitstressregs0x80':
case 'jitstress2_jitstressregs0x1000':
case 'tailcallstress':
case 'jitsse2only':
case 'gcstress0x3':
case 'gcstress0xc':
case 'zapdisable':
case 'heapverify1':
case 'gcstress0xc_zapdisable':
case 'gcstress0xc_zapdisable_jitstress2':
case 'gcstress0xc_zapdisable_heapverify1':
case 'gcstress0xc_jitstress1':
case 'gcstress0xc_jitstress2':
case 'gcstress0xc_minopts_heapverify1':
def displayStr = getStressModeDisplayName(scenario)
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - ${displayStr})",
"(?i).*test\\W+${os}\\W+${scenario}.*")
break
case 'corefx_baseline':
case 'corefx_minopts':
case 'corefx_jitstress1':
case 'corefx_jitstress2':
case 'corefx_jitstressregs1':
case 'corefx_jitstressregs2':
case 'corefx_jitstressregs3':
case 'corefx_jitstressregs4':
case 'corefx_jitstressregs8':
case 'corefx_jitstressregs0x10':
case 'corefx_jitstressregs0x80':
case 'corefx_jitstressregs0x1000':
def displayName = ('CoreFx ' + getStressModeDisplayName(scenario)).trim()
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - ${displayName})",
"(?i).*test\\W+${os}\\W+${architecture}\\W+${scenario}.*")
break
case 'illink':
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} via ILLink", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
break
default:
println("Unknown scenario: ${scenario}");
assert false
break
}
break
case 'FreeBSD':
assert scenario == 'default'
if (configuration == 'Checked') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build")
}
break
default:
println("Unknown os: ${os}");
assert false
break
}
break
// editor brace matching: }
case 'arm': // editor brace matching: {
assert scenario == 'default'
switch (os) {
case 'Ubuntu':
case 'Ubuntu16.04':
if ((os == 'Ubuntu' && configuration == 'Release') || (os == 'Ubuntu16.04' && configuration == 'Debug')) {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Build")
}
else {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Build", "(?i).*test\\W+${os}\\W+${architecture}\\W+Cross\\W+${configuration}\\W+Build.*")
}
break;
case 'Tizen':
architecture='armel'
// Removing the regex will cause this to run on each PR.
if (configuration == 'Release' || configuration == 'Debug') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Build")
}
else {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Build", "(?i).*test\\W+${os}\\W+${architecture}\\W+Cross\\W+${configuration}\\W+Build.*")
}
break;
case 'Windows_NT':
if (configuration == 'Debug' || configuration == 'Release')
{
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Build")
}
break
default:
println("NYI os: ${os}");
assert false
break
}
break
// editor brace matching: }
case 'arm64': // editor brace matching: {
assert (scenario == 'default') || (scenario == 'pri1r2r') || (scenario == 'gcstress0x3') || (scenario == 'gcstress0xc')
// Set up a private trigger
def contextString = "${os} ${architecture} Cross ${configuration}"
if (scenario != 'default')
contextString += " ${scenario}"
contextString += " Build"
// Debug builds only.
if (configuration != 'Debug') {
contextString += " and Test"
}
def arm64Users = [
'adiaaida',
'AndyAyersMS',
'briansull',
'BruceForstall',
'CarolEidt',
'cmckinsey',
'erozenfeld',
'jashook',
'JosephTremoulet',
'pgavlin',
'russellhadley',
'RussKeldorph',
'sandreenko',
'sdmaclea',
'sivarv',
'swaroop-sridhar',
'gkhanna79',
'jkotas',
'markwilkie',
'rahku',
'ramarag',
'tzwlai',
'weshaggard'
]
switch (os) {
case 'Ubuntu':
case 'Ubuntu16.04':
switch (scenario) {
case 'pri1':
if (configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Priority 1 Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
}
break
case 'r2r':
if (configuration == 'Checked' || configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} R2R pri0 Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'pri1r2r':
if (configuration == 'Checked' || configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} R2R pri1 Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'gcstress15_pri1r2r':
if (configuration == 'Release' || configuration == 'Checked') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GCStress 15 R2R pri1 Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'r2r_jitstress1':
case 'r2r_jitstress2':
case 'r2r_jitstressregs1':
case 'r2r_jitstressregs2':
case 'r2r_jitstressregs3':
case 'r2r_jitstressregs4':
case 'r2r_jitstressregs8':
case 'r2r_jitstressregs0x10':
case 'r2r_jitstressregs0x80':
case 'r2r_jitstressregs0x1000':
case 'r2r_jitminopts':
case 'r2r_jitforcerelocs':
if (configuration == 'Release' || configuration == 'Checked') {
def displayStr = getR2RStressModeDisplayName(scenario)
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} R2R Build & Test", "(?i).*test\\W+${os}\\W+${configuration}\\W+${scenario}.*")
}
break
default:
break
}
case 'Windows_NT':
switch (scenario) {
case 'default':
// For now only run Debug jobs on PR Trigger.
if (configuration != 'Debug') {
Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString,
"(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}.*", null, arm64Users)
}
else {
// Add "Checked Build And Test" and "Debug Build" to the above users' PRs since many of them
// are at higher risk of ARM64-breaking changes.
Utilities.addDefaultPrivateGithubPRTriggerForBranch(job, branch, contextString, null, arm64Users)
}
break
case 'pri1r2r':
case 'gcstress0x3':
case 'gcstress0xc':
Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString,
"(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*", null, arm64Users)
break
}
break
default:
println("NYI os: ${os}");
assert false
break
}
break
// editor brace matching: }
case 'x86': // editor brace matching: {
assert ((os == 'Windows_NT') || ((os == 'Ubuntu') && (scenario == 'default')))
if (os == 'Ubuntu') {
// on-demand only for ubuntu x86
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build",
"(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}.*")
break
}
switch (scenario) {
case 'default':
if (configuration == 'Checked') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test")
}
else if (configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test",
"(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}.*")
}
break
case 'pri1':
if (configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Priority 1 Build and Test")
}
break
case 'ilrt':
if (configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} IL RoundTrip Build and Test",
"(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'r2r':
if (configuration == 'Checked' || configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} R2R pri0 Build & Test",
"(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'pri1r2r':
if (configuration == 'Checked' || configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} R2R pri1 Build & Test",
"(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'gcstress15_pri1r2r':
if (configuration == 'Release' || configuration == 'Checked') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GCStress 15 R2R pri1 Build & Test",
"(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'r2r_jitstress1':
case 'r2r_jitstress2':
case 'r2r_jitstressregs1':
case 'r2r_jitstressregs2':
case 'r2r_jitstressregs3':
case 'r2r_jitstressregs4':
case 'r2r_jitstressregs8':
case 'r2r_jitstressregs0x10':
case 'r2r_jitstressregs0x80':
case 'r2r_jitstressregs0x1000':
case 'r2r_jitminopts':
case 'r2r_jitforcerelocs':
if (configuration == 'Release' || configuration == 'Checked') {
def displayStr = getR2RStressModeDisplayName(scenario)
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} ${displayStr} R2R Build & Test",
"(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'longgc':
if (configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Long-Running GC Build & Test",
"(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'gcsimulator':
if (configuration == 'Release') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} GC Simulator",
"(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'standalone_gc':
if (configuration == 'Release' || configuration == 'Checked') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Standalone GC",
"(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
}
break
case 'minopts':
case 'forcerelocs':
case 'jitstress1':
case 'jitstress2':
case 'jitstressregs1':
case 'jitstressregs2':
case 'jitstressregs3':
case 'jitstressregs4':
case 'jitstressregs8':
case 'jitstressregs0x10':
case 'jitstressregs0x80':
case 'jitstressregs0x1000':
case 'jitstress2_jitstressregs1':
case 'jitstress2_jitstressregs2':
case 'jitstress2_jitstressregs3':
case 'jitstress2_jitstressregs4':
case 'jitstress2_jitstressregs8':
case 'jitstress2_jitstressregs0x10':
case 'jitstress2_jitstressregs0x80':
case 'jitstress2_jitstressregs0x1000':
case 'tailcallstress':
case 'jitsse2only':
case 'gcstress0x3':
case 'gcstress0xc':
case 'zapdisable':
case 'heapverify1':
case 'gcstress0xc_zapdisable':
case 'gcstress0xc_zapdisable_jitstress2':
case 'gcstress0xc_zapdisable_heapverify1':
case 'gcstress0xc_jitstress1':
case 'gcstress0xc_jitstress2':
case 'gcstress0xc_minopts_heapverify1':
def displayStr = getStressModeDisplayName(scenario)
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - ${displayStr})",
"(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
break
case 'corefx_baseline':
case 'corefx_minopts':
case 'corefx_jitstress1':
case 'corefx_jitstress2':
case 'corefx_jitstressregs1':
case 'corefx_jitstressregs2':
case 'corefx_jitstressregs3':
case 'corefx_jitstressregs4':
case 'corefx_jitstressregs8':
case 'corefx_jitstressregs0x10':
case 'corefx_jitstressregs0x80':
case 'corefx_jitstressregs0x1000':
def displayName = ('CoreFx ' + getStressModeDisplayName(scenario)).trim()
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - ${displayName})",
"(?i).*test\\W+${os}\\W+${architecture}\\W+${scenario}.*")
break
case 'illink':
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} via ILLink", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
break
default:
println("Unknown scenario: ${os} ${architecture} ${scenario}");
assert false
break
}
break
// editor brace matching: }
case 'x86lb': // editor brace matching: {
assert (os == 'Windows_NT')
assert (scenario == 'default' || Constants.r2rJitStressScenarios.indexOf(scenario) !=1)
def arch = 'x86'
def jit = 'legacy_backend'
switch (scenario) {
case 'default':
if (configuration == 'Checked') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${arch} ${jit} ${configuration} Build and Test",
"(?i).*test\\W+${os}\\W+${arch}\\W+${jit}\\W+${configuration}.*")
}
break
default:
println("Unknown scenario: ${os} ${arch} ${jit} ${scenario}");
assert false
break
}
break
// editor brace matching: }
default:
println("Unknown architecture: ${architecture}");
assert false
break
}
}
def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR, def architecture, def configuration, def os, def enableCorefxTesting, def isBuildOnly) {
def buildCommands = [];
def osGroup = getOSGroup(os)
def lowerConfiguration = configuration.toLowerCase()
// Calculate the build steps, archival, and xunit results
switch (os) {
case 'Windows_NT': // editor brace matching: {
switch (architecture) {
case 'x64':
case 'x86':
case 'x86lb':
def arch = architecture
def buildOpts = ''
if (architecture == 'x86lb') {
arch = 'x86'
}
if (scenario == 'illink') {
buildCommands += "tests\\scripts\\build_illink.cmd clone ${arch}"
}
if (Constants.jitStressModeScenarios.containsKey(scenario) ||
scenario == 'default' ||
scenario == 'r2r' ||
scenario == 'jitdiff' ||
scenario == 'ilrt' ||
scenario == 'illink' ||
Constants.r2rJitStressScenarios.indexOf(scenario) != -1) {
buildOpts += enableCorefxTesting ? ' skiptests' : ''
buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${arch} ${buildOpts}"
}
// For Pri 1 tests, we must shorten the output test binary path names.
// if __TestIntermediateDir is already set, build-test.cmd will
// output test binaries to that directory. If it is not set, the
// binaries are sent to a default directory whose name is about
// 35 characters long.
else if (scenarioNeedsPri1Build(scenario)) {
buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${arch} ${buildOpts} -priority=1"
}
else if (isLongGc(scenario)) {
buildCommands += "build.cmd ${lowerConfiguration} ${arch} ${buildOpts} skiptests"
buildCommands += "set __TestIntermediateDir=int&&build-test.cmd ${lowerConfiguration} ${arch}"
}
else if (scenario == 'standalone_gc') {
buildCommands += "build.cmd ${lowerConfiguration} ${arch} ${buildOpts} buildstandalonegc"
}
else if (scenario == 'formatting') {
buildCommands += "python -u tests\\scripts\\format.py -c %WORKSPACE% -o Windows_NT -a ${arch}"
Utilities.addArchival(newJob, "format.patch", "", true, false)
break
}
else {
println("Unknown scenario: ${scenario}")
assert false
}
// If we are running a stress mode, we should write out the set of key
// value env pairs to a file at this point and then we'll pass that to runtest.cmd
if (!isBuildOnly) {
//If this is a crossgen build, pass 'crossgen' to runtest.cmd
def crossgenStr = ''
def runcrossgentestsStr = ''
def runjitstressStr = ''
def runjitstressregsStr = ''
def runjitmioptsStr = ''
def runjitforcerelocsStr = ''
def runjitdisasmStr = ''
def runilasmroundtripStr = ''
def gcstressStr = ''
def runtestArguments = ''
def gcTestArguments = ''
def illinkArguments = ''
if (scenario == 'r2r' ||
scenario == 'pri1r2r' ||
scenario == 'gcstress15_pri1r2r' ||
Constants.r2rJitStressScenarios.indexOf(scenario) != -1) {
crossgenStr = 'crossgen'
runcrossgentestsStr = 'runcrossgentests'
if (scenario == 'r2r_jitstress1'){
runjitstressStr = 'jitstress 1'
}
else if (scenario == 'r2r_jitstress2') {
runjitstressStr = 'jitstress 2'
}
else if (scenario == 'r2r_jitstressregs1'){
runjitstressregsStr = 'jitstressregs 1'
}
else if (scenario == 'r2r_jitstressregs2') {
runjitstressregsStr = 'jitstressregs 2'
}
else if (scenario == 'r2r_jitstressregs3') {
runjitstressregsStr = 'jitstressregs 3'
}
else if (scenario == 'r2r_jitstressregs4') {
runjitstressregsStr = 'jitstressregs 4'
}
else if (scenario == 'r2r_jitstressregs8') {
runjitstressregsStr = 'jitstressregs 8'
}
else if (scenario == 'r2r_jitstressregs0x10') {
runjitstressregsStr = 'jitstressregs 0x10'
}
else if (scenario == 'r2r_jitstressregs0x80') {
runjitstressregsStr = 'jitstressregs 0x80'
}
else if (scenario == 'r2r_jitstressregs0x1000') {
runjitstressregsStr = 'jitstressregs 0x1000'
}
else if (scenario == 'r2r_jitminopts') {
runjitmioptsStr = 'jitminopts'
}
else if (scenario == 'r2r_jitforcerelocs') {
runjitforcerelocsStr = 'jitforcerelocs'
}
}
if (scenario == 'gcstress15_pri1r2r')
{
gcstressStr = 'gcstresslevel 0xF'
}
if (scenario == 'jitdiff')
{
runjitdisasmStr = 'jitdisasm crossgen'
}
if (scenario == 'ilrt')
{
runilasmroundtripStr = 'ilasmroundtrip'
}
if (isLongGc(scenario)) {
gcTestArguments = "${scenario} sequential"
}
if (scenario == 'illink')
{
illinkArguments = "link %WORKSPACE%\\linker\\linker\\bin\\netcore_Release\\netcoreapp2.0\\win10-${arch}\\publish\\illink.exe"
}
runtestArguments = "${lowerConfiguration} ${arch} ${gcstressStr} ${crossgenStr} ${runcrossgentestsStr} ${runjitstressStr} ${runjitstressregsStr} ${runjitmioptsStr} ${runjitforcerelocsStr} ${runjitdisasmStr} ${runilasmroundtripStr} ${gcTestArguments} ${illinkArguments} collectdumps"
if (Constants.jitStressModeScenarios.containsKey(scenario)) {
def stepScriptLocation = "%WORKSPACE%\\SetStressModes.bat"
buildCommands += genStressModeScriptStep(os, scenario, Constants.jitStressModeScenarios[scenario], stepScriptLocation)
if (enableCorefxTesting) {
def workspaceRelativeFxRoot = "_/fx"
def absoluteFxRoot = "%WORKSPACE%\\_\\fx"
buildCommands += "python -u %WORKSPACE%\\tests\\scripts\\run-corefx-tests.py -arch ${arch} -build_type ${configuration} -fx_root ${absoluteFxRoot} -fx_branch ${branch} -env_script ${stepScriptLocation}"
setTestJobTimeOut(newJob, scenario)
// Archive and process (only) the test results
Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
Utilities.addXUnitDotNETResults(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
}
else {
buildCommands += "%WORKSPACE%\\tests\\runtest.cmd ${runtestArguments} TestEnv ${stepScriptLocation}"
}
}
else if (isGcReliabilityFramework(scenario)) {
buildCommands += "tests\\runtest.cmd ${runtestArguments} GenerateLayoutOnly"
buildCommands += "tests\\scripts\\run-gc-reliability-framework.cmd ${arch} ${configuration}"
}
else if (architecture == 'x64' || architecture == 'x86') {
buildCommands += "tests\\runtest.cmd ${runtestArguments}"
}
else if (architecture == 'x86lb') {
buildCommands += "tests\\runtest.cmd ${runtestArguments} TestEnv %WORKSPACE%\\tests\\legacyjit_x86_testenv.cmd"
}
}
if (!enableCorefxTesting) {
// Run the rest of the build
// Build the mscorlib for the other OS's
buildCommands += "build.cmd ${lowerConfiguration} ${arch} linuxmscorlib"
buildCommands += "build.cmd ${lowerConfiguration} ${arch} freebsdmscorlib"
buildCommands += "build.cmd ${lowerConfiguration} ${arch} osxmscorlib"
if (arch == "x64") {
buildCommands += "build.cmd ${lowerConfiguration} arm64 linuxmscorlib"
}
// Zip up the tests directory so that we don't use so much space/time copying
// 10s of thousands of files around.
buildCommands += "powershell -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('.\\bin\\tests\\${osGroup}.${arch}.${configuration}', '.\\bin\\tests\\tests.zip')\"";
if (!Constants.jitStressModeScenarios.containsKey(scenario)) {
// For windows, pull full test results and test drops for x86/x64.
// No need to pull for stress mode scenarios (downstream builds use the default scenario)
Utilities.addArchival(newJob, "bin/Product/**,bin/tests/tests.zip", "bin/Product/**/.nuget/**")
}
if (scenario == 'jitdiff') {
// retrive jit-dasm output for base commit, and run jit-diff
if (!isBuildOnly) {
// if this is a build only job, we want to keep the default (build) artifacts for the flow job
Utilities.addArchival(newJob, "bin/tests/${osGroup}.${arch}.${configuration}/dasm/**")
}
}
if (!isBuildOnly) {
Utilities.addXUnitDotNETResults(newJob, 'bin/**/TestRun*.xml', true)
setTestJobTimeOut(newJob, scenario)
}
}
break
case 'arm':
assert (scenario == 'default')
// Set time out
setTestJobTimeOut(newJob, scenario)
if ( lowerConfiguration == "debug" ) {
// For Debug builds, we will do a P1 test build
buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${architecture} -priority=1"
}
else {
buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${architecture}"
}
// Add archival.
Utilities.addArchival(newJob, "bin/Product/**", "bin/Product/**/.nuget/**")
break
case 'arm64':
assert (scenario == 'default') || (scenario == 'pri1r2r') || (scenario == 'gcstress0x3') || (scenario == 'gcstress0xc')
// Set time out
setTestJobTimeOut(newJob, scenario)
// Debug runs take too long to run. So build job only.
if (lowerConfiguration == "debug") {
buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${architecture} toolset_dir C:\\ats2"
}
else {
if ((scenario != 'gcstress0x3') && (scenario != 'gcstress0xc'))
{
// Up the timeout for arm64 checked testing only.
// Keep the longer timeout for gcstress.
Utilities.setJobTimeout(newJob, 240)
}
buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${architecture} toolset_dir C:\\ats2 -priority=1"
// Test build and run are launched together.
buildCommands += "python tests\\scripts\\arm64_post_build.py -repo_root %WORKSPACE% -arch ${architecture} -build_type ${lowerConfiguration} -scenario ${scenario} -key_location C:\\tools\\key.txt"
//Utilities.addXUnitDotNETResults(newJob, 'bin/tests/testResults.xml')
}
// Add archival.
Utilities.addArchival(newJob, "bin/Product/**", "bin/Product/**/.nuget/**")
break
default:
println("Unknown architecture: ${architecture}");
assert false
break
}
break
// editor brace matching: }
case 'Ubuntu':
case 'Ubuntu16.04':
case 'Ubuntu16.10':
case 'Debian8.4':
case 'OSX10.12':
case 'FreeBSD':
case 'CentOS7.1':
case 'RHEL7.2':
case 'OpenSUSE42.1':
case 'Tizen':
case 'Fedora24': // editor brace matching: {
switch (architecture) {
case 'x64':
case 'x86':
if (architecture == 'x86' && os == 'Ubuntu') {
// build and PAL test
buildCommands += "./tests/scripts/x86_ci_script.sh --buildConfig=${lowerConfiguration}"
Utilities.addXUnitDotNETResults(newJob, '**/pal_tests.xml')
break;
}
if (scenario == 'formatting') {
buildCommands += "python tests/scripts/format.py -c \${WORKSPACE} -o Linux -a ${architecture}"
Utilities.addArchival(newJob, "format.patch", "", true, false)
break
}
if (scenario == 'illink') {
assert(os == 'Ubuntu')
buildCommands += "./tests/scripts/build_illink.sh --clone --arch=${architecture}"
}
def standaloneGc = ''
if (scenario == 'standalone_gc') {
standaloneGc = 'buildstandalonegc'
}
if (!enableCorefxTesting) {
// We run pal tests on all OS but generate mscorlib (and thus, nuget packages)
// only on supported OS platforms.
if (os == 'FreeBSD')
{
buildCommands += "./build.sh skipmscorlib verbose ${lowerConfiguration} ${architecture} ${standaloneGc}"
}
else
{
def bootstrapRid = Utilities.getBoostrapPublishRid(os)
def bootstrapRidEnv = bootstrapRid != null ? "__PUBLISH_RID=${bootstrapRid} " : ''
buildCommands += "${bootstrapRidEnv}./build.sh verbose ${lowerConfiguration} ${architecture} ${standaloneGc}"
}
buildCommands += "src/pal/tests/palsuite/runpaltests.sh \${WORKSPACE}/bin/obj/${osGroup}.${architecture}.${configuration} \${WORKSPACE}/bin/paltestout"
// Set time out
setTestJobTimeOut(newJob, scenario)
// Basic archiving of the build
Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**/*.dylib,bin/obj/*/tests/**/*.so", "bin/Product/**/.nuget/**")
// And pal tests
Utilities.addXUnitDotNETResults(newJob, '**/pal_tests.xml')
}
else {
// Corefx stress testing
assert os == 'Ubuntu'
assert architecture == 'x64'
assert lowerConfiguration == 'checked'
assert Constants.jitStressModeScenarios.containsKey(scenario)
// Build coreclr
buildCommands += "./build.sh verbose ${lowerConfiguration} ${architecture}"
def scriptFileName = "\$WORKSPACE/set_stress_test_env.sh"
buildCommands += genStressModeScriptStep(os, scenario, Constants.jitStressModeScenarios[scenario], scriptFileName)
// Build and text corefx
def workspaceRelativeFxRoot = "_/fx"
def absoluteFxRoot = "\$WORKSPACE/${workspaceRelativeFxRoot}"
buildCommands += "python -u \$WORKSPACE/tests/scripts/run-corefx-tests.py -arch ${architecture} -build_type ${configuration} -fx_root ${absoluteFxRoot} -fx_branch ${branch} -env_script ${scriptFileName}"
setTestJobTimeOut(newJob, scenario)
// Archive and process (only) the test results
Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
Utilities.addXUnitDotNETResults(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
}
break
case 'arm64':
def standaloneGc = ''
if (scenario == 'standalone_gc') {
standaloneGc = 'buildstandalonegc'
}
if (!enableCorefxTesting) {
buildCommands += "ROOTFS_DIR=/opt/arm64-xenial-rootfs ./build.sh skipmscorlib verbose ${lowerConfiguration} ${architecture} cross clang3.8 skipnuget ${standaloneGc}"
// HACK -- Arm64 does not have corefx jobs yet.
buildCommands += "git clone https://github.com/dotnet/corefx fx"
buildCommands += "ROOTFS_DIR=/opt/arm64-xenial-rootfs-corefx ./fx/build-native.sh -release -buildArch=arm64 -- verbose cross clang3.8"
buildCommands += "mkdir ./bin/Product/Linux.arm64.${configuration}/corefxNative"
buildCommands += "cp fx/bin/Linux.arm64.Release/native/* ./bin/Product/Linux.arm64.${configuration}/corefxNative"
// Set time out
setTestJobTimeOut(newJob, scenario)
// Basic archiving of the build
Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**/*.dylib,bin/obj/*/tests/**/*.so", "bin/Product/**/.nuget/**")
}
break
case 'arm':
// Cross builds for ARM runs on Ubuntu, Ubuntu16.04 and Tizen currently
assert (os == 'Ubuntu') || (os == 'Ubuntu16.04') || (os == 'Tizen')
// default values for Ubuntu
def arm_abi="arm"
def linuxCodeName="trusty"
if (os == 'Ubuntu16.04') {
linuxCodeName="xenial"
}
else if (os == 'Tizen') {
arm_abi="armel"
linuxCodeName="tizen"
}
// Unzip the Windows test binaries first. Exit with 0
buildCommands += "unzip -q -o ./bin/tests/tests.zip -d ./bin/tests/Windows_NT.x64.${configuration} || exit 0"
// Unpack the corefx binaries
buildCommands += "mkdir ./bin/CoreFxBinDir"
buildCommands += "tar -xf ./bin/build.tar.gz -C ./bin/CoreFxBinDir"
if (os != 'Tizen') {
buildCommands += "chmod a+x ./bin/CoreFxBinDir/corerun"
}
// Test environment emulation using docker and qemu has some problem to use lttng library.
// We should remove libcoreclrtraceptprovider.so to avoid test hang.
if (os == 'Ubuntu') {
buildCommands += "rm -f -v ./bin/CoreFxBinDir/libcoreclrtraceptprovider.so"
}
// Call the ARM CI script to cross build and test using docker
buildCommands += """./tests/scripts/arm32_ci_script.sh \\
--mode=docker \\
--${arm_abi} \\
--linuxCodeName=${linuxCodeName} \\
--buildConfig=${lowerConfiguration} \\
--testRootDir=./bin/tests/Windows_NT.x64.${configuration} \\
--coreFxBinDir=./bin/CoreFxBinDir \\
--testDirFile=./tests/testsRunningInsideARM.txt"""
// Basic archiving of the build, no pal tests
Utilities.addArchival(newJob, "bin/Product/**", "bin/Product/**/.nuget/**")
break
default:
println("Unknown architecture: ${architecture}");
assert false
break
}
break
// editor brace matching: }
default:
println("Unknown os: ${os}");
assert false
break
} // os
return buildCommands
}
// Additional scenario which can alter behavior
def combinedScenarios = Constants.basicScenarios + Constants.jitStressModeScenarios.keySet()
combinedScenarios.each { scenario ->
[true, false].each { isPR ->
Constants.architectureList.each { architecture ->
Constants.configurationList.each { configuration ->
Constants.osList.each { os ->
// If the OS is Windows_NT_BuildOnly, set the isBuildOnly flag to true
// and reset the os to Windows_NT
def isBuildOnly = false
if (os == 'Windows_NT_BuildOnly') {
isBuildOnly = true
os = 'Windows_NT'
}
// WinArm32 is only built for Debug and Release
if (os == 'Windows_NT' && architecture == 'arm')
{
if (configuration == 'Checked')
{
return
}
}
// Tizen is only supported for arm architecture
if (os == 'Tizen' && architecture != 'arm') {
return
}
// Skip totally unimplemented (in CI) configurations.
switch (architecture) {
case 'arm64':
if (os == 'Ubuntu16.04') {
os = 'Ubuntu'
}
// Windows and Ubuntu only
if ((os != 'Windows_NT' && os != 'Ubuntu') || isBuildOnly) {
return
}
break
case 'arm':
if ((os != 'Ubuntu') && (os != 'Ubuntu16.04') && (os != 'Tizen') && (os != 'Windows_NT')) {
return
}
break
case 'x86':
if ((os != 'Ubuntu') && (os != 'Windows_NT')) {
return
}
break
case 'x86lb':
if (os != 'Windows_NT') {
return
}
break
case 'x64':
// Everything implemented
break
default:
println("Unknown architecture: ${architecture}")
assert false
break
}
// Skip scenarios (blanket skipping for jit stress modes, which are good most everywhere
// with checked builds
def enableCorefxTesting = false
if (Constants.jitStressModeScenarios.containsKey(scenario)) {
if (configuration != 'Checked') {
return
}
enableCorefxTesting = isCorefxTesting(scenario)
// Since these are just execution time differences,
// skip platforms that don't execute the tests here (Windows_NT only)
def isEnabledOS = (os == 'Windows_NT') || (os == 'Ubuntu' && enableCorefxTesting)
if (!isEnabledOS || isBuildOnly) {
return
}
switch (architecture) {
case 'arm64':
if ((scenario != 'gcstress0x3') && (scenario != 'gcstress0xc')) {
return
}
break
case 'x64':
case 'x86':
// x86 ubuntu: default only
if ((os == 'Ubuntu') && (architecture == 'x86')) {
return
}
// Windows: Everything implemented
break
case 'x86lb':
// No stress modes for legacy jit.
// (There's no technical reason we couldn't allow these.)
return
default:
return
}
}
else {
// If this is a r2r jitstress, jitstressregs, jitminopts, or forcerelocs scenario
// and configuration is not Checked, bail out.
if (configuration != 'Checked' && Constants.r2rJitStressScenarios.indexOf(scenario) != -1) {
return;
}
// Skip scenarios
switch (scenario) {
case 'pri1':
// The pri1 build isn't necessary except for Windows_NT. Non-Windows NT uses
// the default scenario build
if (os != 'Windows_NT') {
return
}
// Only x64 for now
if (architecture != 'x64') {
return
}
break
case 'ilrt':
// The ilrt build isn't necessary except for Windows_NT. Non-Windows NT uses
// the default scenario build
if (os != 'Windows_NT') {
return
}
// Only x64 for now
if (architecture != 'x64') {
return
}
// Release only
if (configuration != 'Release') {
return
}
break
case 'jitdiff':
if (os != 'Windows_NT' && os != 'Ubuntu' && os != 'OSX10.12') {
return
}
if (architecture != 'x64') {
return
}
if (configuration != 'Checked') {
return
}
break
case 'r2r':
// The r2r build isn't necessary except for Windows_NT. Non-Windows NT uses
// the default scenario build
if (os != 'Windows_NT') {
return
}
if (architecture != 'x64') {
return
}
break
case 'pri1r2r':
// The pri1r2r build isn't necessary except for Windows_NT. Non-Windows NT uses
// the default scenario build
if (os != 'Windows_NT') {
return
}
if (architecture != 'x64') {
if (architecture != 'arm64' || configuration == 'Debug') {
return
}
}
break
case 'gcstress15_pri1r2r':
case 'r2r_jitstress1':
case 'r2r_jitstress2':
case 'r2r_jitstressregs1':
case 'r2r_jitstressregs2':
case 'r2r_jitstressregs3':
case 'r2r_jitstressregs4':
case 'r2r_jitstressregs8':
case 'r2r_jitstressregs0x10':
case 'r2r_jitstressregs0x80':
case 'r2r_jitstressregs0x1000':
case 'r2r_jitminopts':
case 'r2r_jitforcerelocs':
// The above builds are not necessary except for Windows_NT. Non-Windows NT uses
// the default scenario build
if (os != 'Windows_NT') {
return
}
if (architecture != 'x64' && architecture != 'x86') {
return
}
break
case 'longgc':
case 'gcsimulator':
if (os != 'Windows_NT' && os != 'Ubuntu' && os != 'OSX10.12') {
return
}
if (architecture != 'x64') {
return
}
if (configuration != 'Release') {
return
}
break
case 'gc_reliability_framework':
case 'standalone_gc':
if (os != 'Windows_NT' && os != 'Ubuntu' && os != 'OSX10.12') {
return
}
if (architecture != 'x64') {
return
}
if (configuration != 'Release' && configuration != 'Checked') {
return
}
break
// We need Windows x64 Release bits for the code coverage build
case 'coverage':
if (os != 'Windows_NT') {
return
}
if (architecture != 'x64') {
return
}
if (configuration != 'Release') {
return
}
break
// We only run Windows and Ubuntu x64 Checked for formatting right now
case 'formatting':
if (os != 'Windows_NT' && os != 'Ubuntu') {
return
}
if (architecture != 'x64') {
return
}
if (configuration != 'Checked') {
return
}
if (isBuildOnly) {
return
}
break
case 'illink':
if (os != 'Windows_NT' && (os != 'Ubuntu' || architecture != 'x64')) {
return
}
if (architecture != 'x64' && architecture != 'x86') {
return
}
if (isBuildOnly) {
return
}
break
case 'default':
// Nothing skipped
break
default:
println("Unknown scenario: ${scenario}")
assert false
break
}
}
// Calculate names
def lowerConfiguration = configuration.toLowerCase()
def jobName = getJobName(configuration, architecture, os, scenario, isBuildOnly)
def folderName = getJobFolder(scenario)
// Create the new job
def newJob = job(Utilities.getFullJobName(project, jobName, isPR, folderName)) {}
def machineAffinityOptions = architecture == 'arm64' ? ['is_build_only': true] : null
setMachineAffinity(newJob, os, architecture, machineAffinityOptions)
// Add all the standard options
Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
addTriggers(newJob, branch, isPR, architecture, os, configuration, scenario, false, isBuildOnly)
def buildCommands = calculateBuildCommands(newJob, scenario, branch, isPR, architecture, configuration, os, enableCorefxTesting, isBuildOnly)
def osGroup = getOSGroup(os)
newJob.with {
steps {
if (os == 'Windows_NT') {
buildCommands.each { buildCommand ->
batchFile(buildCommand)
}
}
else {
// Setup corefx and Windows test binaries for Linux cross build for ubuntu-arm, ubuntu16.04-arm and tizen-armel
if ( architecture == 'arm' && ( os == 'Ubuntu' || os == 'Ubuntu16.04' || os == 'Tizen')) {
// Cross build for ubuntu-arm, ubuntu16.04-arm and tizen-armel
// Define the Windows Tests and Corefx build job names
def WindowTestsName = projectFolder + '/' +
Utilities.getFullJobName(project,
getJobName(lowerConfiguration,
'x64' ,
'windows_nt',
'default',
true),
false)
def corefxFolder = Utilities.getFolderName('dotnet/corefx') + '/' +
Utilities.getFolderName(branch)
// Copy the Windows test binaries and the Corefx build binaries
copyArtifacts(WindowTestsName) {
includePatterns('bin/tests/tests.zip')
buildSelector {
latestSuccessful(true)
}
}
def arm_abi = 'arm'
def corefx_os = 'linux'
if (os == 'Tizen') {
arm_abi = 'armel'
corefx_os = 'tizen'
}
// Let's use release CoreFX to test checked CoreCLR,
// because we do not generate checked CoreFX in CoreFX CI yet.
def corefx_lowerConfiguration = lowerConfiguration
if ( lowerConfiguration == 'checked' ) {
corefx_lowerConfiguration='release'
}
copyArtifacts("${corefxFolder}/${corefx_os}_${arm_abi}_cross_${corefx_lowerConfiguration}") {
includePatterns('bin/build.tar.gz')
buildSelector {
latestSuccessful(true)
}
}
}
buildCommands.each { buildCommand ->
shell(buildCommand)
}
}
}
} // newJob.with
} // os
} // configuration
} // architecture
} // isPR
} // scenario
// Create the Linux/OSX/CentOS coreclr test leg for debug and release and each scenario
combinedScenarios.each { scenario ->
[true, false].each { isPR ->
// Architectures. x64 only at this point
['x64', 'arm64'].each { architecture ->
// Put the OS's supported for coreclr cross testing here
Constants.crossList.each { os ->
if (architecture == 'arm64') {
if (os != "Ubuntu") {
return
}
}
Constants.configurationList.each { configuration ->
if (architecture == 'arm64') {
if (scenario != 'default' && scenario != 'pri1r2r' && scenario != 'gcstress0x3' && scenario != 'gcstress0xc') {
return
}
}
if (Constants.jitStressModeScenarios.containsKey(scenario)) {
if (configuration != 'Checked') {
return
}
if (isCorefxTesting(scenario)) {
return
}
//Skip stress modes for these scenarios
if (os == 'RHEL7.2' || os == 'Debian8.4') {
return
}
}
// If this is a r2r jitstress, jitstressregs, jitminopts or forcerelocs scenario
// and configuration is not Checked, bail out.
else if (configuration != 'Checked' && Constants.r2rJitStressScenarios.indexOf(scenario) != -1) {
return;
}
// For CentOS, we only want Checked/Release pri1 builds.
else if (os == 'CentOS7.1') {
if (scenario != 'pri1' &&
scenario != 'r2r' &&
scenario != 'pri1r2r' &&
scenario != 'gcstress15_pri1r2r' &&
Constants.r2rJitStressScenarios.indexOf(scenario) == -1) {
return
}
if (configuration != 'Checked' && configuration != 'Release') {
return
}
}
// For RedHat and Debian, we only do Release pri1 builds.
else if (os == 'RHEL7.2' || os == 'Debian8.4') {
if (scenario != 'pri1') {
return
}
if (configuration != 'Release') {
return
}
}
else {
// Skip scenarios
switch (scenario) {
case 'pri1':
// Nothing skipped
break
case 'ilrt':
// Release only
if (configuration != 'Release') {
return
}
break
case 'jitdiff':
if (configuration != 'Checked') {
return;
}
case 'r2r':
//Skip configs that aren't Checked or Release (so just Debug, for now)
if (configuration != 'Checked' && configuration != 'Release') {
return
}
break
case 'pri1r2r':
//Skip configs that aren't Checked or Release (so just Debug, for now)
if (configuration != 'Checked' && configuration != 'Release') {
return
}
break
case 'gcstress15_pri1r2r':
case 'r2r_jitstress1':
case 'r2r_jitstress2':
case 'r2r_jitstressregs1':
case 'r2r_jitstressregs2':
case 'r2r_jitstressregs3':
case 'r2r_jitstressregs4':
case 'r2r_jitstressregs8':
case 'r2r_jitstressregs0x10':
case 'r2r_jitstressregs0x80':
case 'r2r_jitstressregs0x1000':
case 'r2r_jitminopts':
case 'r2r_jitforcerelocs':
//Skip configs that aren't Checked or Release (so just Debug, for now)
if (configuration != 'Checked' && configuration != 'Release') {
return
}
break
case 'longgc':
case 'gcsimulator':
// Long GC tests take a long time on non-Release builds
if (configuration != 'Release') {
return
}
break
case 'gc_reliability_framework':
case 'standalone_gc':
if (configuration != 'Release' && configuration != 'Checked') {
return
}
break
case 'coverage':
//We only want Ubuntu Release for coverage
if (os != 'Ubuntu') {
return
}
if (configuration != 'Release') {
return
}
case 'formatting':
return
case 'illink':
if (os != 'Windows_NT' && os != 'Ubuntu') {
return
}
break
case 'default':
// Nothing skipped
break
default:
println("Unknown scenario: ${scenario}")
assert false
break
}
}
def lowerConfiguration = configuration.toLowerCase()
def osGroup = getOSGroup(os)
def jobName = getJobName(configuration, architecture, os, scenario, false) + "_tst"
// Unless this is a coverage test run, we want to copy over the default build of coreclr.
def inputScenario = 'default'
if (scenario == 'coverage') {
inputScenario = 'coverage'
}
def inputCoreCLRBuildName = projectFolder + '/' +
Utilities.getFullJobName(project, getJobName(configuration, architecture, os, inputScenario, false), isPR)
// If this is a stress scenario, there isn't any difference in the build job
// so we didn't create a build only job for windows_nt specific to that stress mode. Just copy
// from the default scenario
def testBuildScenario = scenario
if (scenarioNeedsPri1Build(scenario)) {
testBuildScenario = 'pri1'
}
else if ( testBuildScenario == 'r2r' || Constants.r2rJitStressScenarios.indexOf(testBuildScenario) != -1 || isLongGc(testBuildScenario)) {
testBuildScenario = 'default'
}
def inputWindowTestsBuildName = ''
def inputWindowsTestBuildArch = architecture
if (architecture == "arm64") {
// Use the x64 test build for arm64 unix
inputWindowsTestBuildArch = "x64"
}
if (Constants.jitStressModeScenarios.containsKey(testBuildScenario)) {
inputWindowTestsBuildName = projectFolder + '/' +
Utilities.getFullJobName(project, getJobName(configuration, inputWindowsTestBuildArch, 'windows_nt', 'default', true), isPR)
}
else {
inputWindowTestsBuildName = projectFolder + '/' +
Utilities.getFullJobName(project, getJobName(configuration, inputWindowsTestBuildArch, 'windows_nt', testBuildScenario, true), isPR)
}
// Enable Server GC for Ubuntu PR builds
def serverGCString = ''
// Whether or not this test run should be run sequentially instead
// of in parallel. Only used for long GC tests.
def sequentialString = ''
// Whether or not this test run should run a specific playlist.
// Only used for long GC tests.
// A note - runtest.sh does have "--long-gc" and "--gcsimulator" options
// for running long GC and GCSimulator tests, respectively. We don't use them
// here because using a playlist file produces much more readable output on the CI machines
// and reduces running time.
def playlistString = ''
if (os == 'Ubuntu' && isPR){
serverGCString = '--useServerGC'
}
// pass --crossgen to runtest.sh for crossgen builds
def crossgenStr = ''
def runcrossgentestsStr = ''
def runjitstressStr = ''
def runjitstressregsStr = ''
def runjitmioptsStr = ''
def runjitforcerelocsStr = ''
def runjitdisasmStr = ''
def runilasmroundtripStr = ''
def gcstressStr = ''
def illinkStr = ''
def layoutOnlyStr =''
if (scenario == 'r2r' ||
scenario == 'pri1r2r' ||
scenario == 'gcstress15_pri1r2r' ||
Constants.r2rJitStressScenarios.indexOf(scenario) != -1) {
crossgenStr = '--crossgen'
runcrossgentestsStr = '--runcrossgentests'
if (scenario == 'r2r_jitstress1'){
runjitstressStr = '--jitstress=1'
}
else if (scenario == 'r2r_jitstress2') {
runjitstressStr = '--jitstress=2'
}
else if (scenario == 'r2r_jitstressregs1'){
runjitstressregsStr = '--jitstressregs=1'
}
else if (scenario == 'r2r_jitstressregs2') {
runjitstressregsStr = '--jitstressregs=2'
}
else if (scenario == 'r2r_jitstressregs3') {
runjitstressregsStr = '--jitstressregs=3'
}
else if (scenario == 'r2r_jitstressregs4') {
runjitstressregsStr = '--jitstressregs=4'
}
else if (scenario == 'r2r_jitstressregs8') {
runjitstressregsStr = '--jitstressregs=8'
}
else if (scenario == 'r2r_jitstressregs0x10') {
runjitstressregsStr = '--jitstressregs=0x10'
}
else if (scenario == 'r2r_jitstressregs0x80') {
runjitstressregsStr = '--jitstressregs=0x80'
}
else if (scenario == 'r2r_jitstressregs0x1000') {
runjitstressregsStr = '--jitstressregs=0x1000'
}
else if (scenario == 'r2r_jitminopts') {
runjitmioptsStr = '--jitminopts'
}
else if (scenario == 'r2r_jitforcerelocs') {
runjitforcerelocsStr = '--jitforcerelocs'
}
}
if (scenario == 'gcstress15_pri1r2r')
{
gcstressStr = '--gcstresslevel=0xF'
}
if (scenario == 'jitdiff')
{
runjitdisasmStr = '--jitdisasm --crossgen'
}
if (scenario == 'illink')
{
illinkStr = '--link=\$WORKSPACE/linker/linker/bin/netcore_Release/netcoreapp2.0/ubuntu-x64/publish/illink'
}
if (isLongGc(scenario)) {
// Long GC tests behave very poorly when they are not
// the only test running (many of them allocate until OOM).
sequentialString = '--sequential'
// The Long GC playlist contains all of the tests that are
// going to be run. The GCSimulator playlist contains all of
// the GC simulator tests.
if (scenario == 'longgc') {
playlistString = '--long-gc --playlist=./tests/longRunningGcTests.txt'
}
else if (scenario == 'gcsimulator') {
playlistString = '--gcsimulator --playlist=./tests/gcSimulatorTests.txt'
}
}
if (isGcReliabilityFramework(scenario)) {
layoutOnlyStr = '--build-overlay-only'
}
def folder = getJobFolder(scenario)
def newJob = job(Utilities.getFullJobName(project, jobName, isPR, folder)) {
// Add parameters for the inputs
parameters {
stringParam('CORECLR_WINDOWS_BUILD', '', 'Build number to copy CoreCLR windows test binaries from')
stringParam('CORECLR_BUILD', '', "Build number to copy CoreCLR ${osGroup} binaries from")
}
steps {
// Set up the copies
// Coreclr build containing the tests and mscorlib
copyArtifacts(inputWindowTestsBuildName) {
excludePatterns('**/testResults.xml', '**/*.ni.dll')
buildSelector {
buildNumber('${CORECLR_WINDOWS_BUILD}')
}
}
if (scenario == 'coverage') {
// Move coreclr to clr directory
shell("rm -rf .clr; mkdir .clr; mv * .clr; mv .git .clr; mv .clr clr")
// Build coreclr
shell("./clr/build.sh coverage verbose ${lowerConfiguration} ${architecture}")
// Remove folders from obj that we don't expect to be covered. May update this later.
shell("rm -rf ./clr/bin/obj/Linux.x64.Release/src/ToolBox")
shell("rm -rf ./clr/bin/obj/Linux.x64.Release/src/debug")
shell("rm -rf ./clr/bin/obj/Linux.x64.Release/src/ilasm")
shell("rm -rf ./clr/bin/obj/Linux.x64.Release/src/ildasm")
shell("rm -rf ./clr/bin/obj/Linux.x64.Release/src/dlls/dbgshim")
shell("rm -rf ./clr/bin/obj/Linux.x64.Release/src/dlls/mscordac")
shell("rm -rf ./clr/bin/obj/Linux.x64.Release/src/dlls/mscordbi")
// Run PAL tests
shell("./clr/src/pal/tests/palsuite/runpaltests.sh \$(pwd)/clr/bin/obj/${osGroup}.${architecture}.${configuration} \$(pwd)/clr/bin/paltestout")
// Remove obj files for PAL tests so they're not included in coverage results
shell("rm -rf ./clr/bin/obj/Linux.x64.Release/src/pal/tests")
// Unzip the tests first. Exit with 0
shell("unzip -q -o ./clr/bin/tests/tests.zip -d ./clr/bin/tests/Windows_NT.${architecture}.${configuration} || exit 0")
// Get corefx
shell("git clone https://github.com/dotnet/corefx fx")
// Build Linux corefx
shell("./fx/build-native.sh -release -buildArch=x64 -os=Linux")
shell("./fx/build-managed.sh -release -buildArch=x64 -osgroup=Linux -skiptests")
def testEnvOpt = ""
def scriptFileName = "\$WORKSPACE/set_stress_test_env.sh"
def createScriptCmds = genStressModeScriptStep(os, scenario, Constants.jitStressModeScenarios['heapverify1'], scriptFileName)
shell("${createScriptCmds}")
testEnvOpt = "--test-env=" + scriptFileName
// Run corefx tests
shell("""./fx/run-test.sh \\
--coreclr-bins \$(pwd)/clr/bin/Product/${osGroup}.${architecture}.${configuration} \\
--mscorlib-bins \$(pwd)/clr/bin/Product/${osGroup}.${architecture}.${configuration} \\
--corefx-tests \$(pwd)/fx/bin/tests/${osGroup}.AnyCPU.${configuration} \\
--corefx-native-bins \$(pwd)/fx/bin/${osGroup}.${architecture}.${configuration} \\
--configurationGroup Release""")
// Run coreclr tests w/ workstation GC
shell("""./clr/tests/runtest.sh \\
--testRootDir=\"\$(pwd)/clr/bin/tests/Windows_NT.${architecture}.${configuration}\" \\
--testNativeBinDir=\"\$(pwd)/clr/bin/obj/${osGroup}.${architecture}.${configuration}/tests\" \\
--coreClrBinDir=\"\$(pwd)/clr/bin/Product/${osGroup}.${architecture}.${configuration}\" \\
--mscorlibDir=\"\$(pwd)/clr/bin/Product/${osGroup}.${architecture}.${configuration}\" \\
--coreFxBinDir=\"\$(pwd)/fx/bin/runtime/netcoreapp-${osGroup}-Release-${architecture}\" \\
--crossgen --runcrossgentests""")
// Run coreclr tests w/ server GC & HeapVerify enabled
shell("""./clr/tests/runtest.sh \\
--testRootDir=\"\$(pwd)/clr/bin/tests/Windows_NT.${architecture}.${configuration}\" \\
--testNativeBinDir=\"\$(pwd)/clr/bin/obj/${osGroup}.${architecture}.${configuration}/tests\" \\
--coreOverlayDir=\"\$(pwd)/clr/bin/tests/Windows_NT.${architecture}.${configuration}/Tests/coreoverlay\" \\
--useServerGC ${testEnvOpt}""")
// Run long-running coreclr GC tests & produce coverage reports
shell("""./clr/tests/runtest.sh \\
--testRootDir=\"\$(pwd)/clr/bin/tests/Windows_NT.${architecture}.${configuration}\" \\
--testNativeBinDir=\"\$(pwd)/clr/bin/obj/${osGroup}.${architecture}.${configuration}/tests\" \\
--coreOverlayDir=\"\$(pwd)/clr/bin/tests/Windows_NT.${architecture}.${configuration}/Tests/coreoverlay\" \\
--long-gc --playlist=\"\$(pwd)/clr/tests/longRunningGcTests.txt\" --coreclr-coverage\\
--coreclr-objs=\"\$(pwd)/clr/bin/obj/${osGroup}.${architecture}.${configuration}\" \\
--coreclr-src=\"\$(pwd)/clr/src\" \\
--coverage-output-dir=\"\${WORKSPACE}/coverage\" """)
}
else {
// Coreclr build we are trying to test
copyArtifacts(inputCoreCLRBuildName) {
excludePatterns('**/testResults.xml', '**/*.ni.dll')
buildSelector {
buildNumber('${CORECLR_BUILD}')
}
}
def corefxFolder = Utilities.getFolderName('dotnet/corefx') + '/' + Utilities.getFolderName(branch)
// Corefx components. We now have full stack builds on all distros we test here, so we can copy straight from CoreFX jobs.
def osJobName
if (os == 'Ubuntu') {
osJobName = 'ubuntu14.04'
}
else {
osJobName = os.toLowerCase()
}
copyArtifacts("${corefxFolder}/${osJobName}_release") {
includePatterns('bin/build.tar.gz')
buildSelector {
latestSuccessful(true)
}
}
shell ("mkdir ./bin/CoreFxBinDir")
// Unpack the corefx binaries
shell("tar -xf ./bin/build.tar.gz -C ./bin/CoreFxBinDir")
// HACK -- Arm64 does not have corefx jobs yet.
// Clone corefx and build the native packages overwriting the x64 packages.
if (architecture == 'arm64') {
shell("cp ./bin/Product/Linux.arm64.${configuration}/corefxNative/* ./bin/CoreFxBinDir")
shell("chmod +x ./bin/Product/Linux.arm64.${configuration}/corerun")
}
// Unzip the tests first. Exit with 0
shell("unzip -q -o ./bin/tests/tests.zip -d ./bin/tests/Windows_NT.${architecture}.${configuration} || exit 0")
// Execute the tests
// If we are running a stress mode, we'll set those variables first
def testEnvOpt = ""
if (Constants.jitStressModeScenarios.containsKey(scenario)) {
def scriptFileName = "\$WORKSPACE/set_stress_test_env.sh"
def createScriptCmds = genStressModeScriptStep(os, scenario, Constants.jitStressModeScenarios[scenario], scriptFileName)
shell("${createScriptCmds}")
testEnvOpt = "--test-env=" + scriptFileName
}
if (isGCStressRelatedTesting(scenario)) {
shell('./init-tools.sh')
}
shell("""./tests/runtest.sh \\
--testRootDir=\"\${WORKSPACE}/bin/tests/Windows_NT.${architecture}.${configuration}\" \\
--testNativeBinDir=\"\${WORKSPACE}/bin/obj/${osGroup}.${architecture}.${configuration}/tests\" \\
--coreClrBinDir=\"\${WORKSPACE}/bin/Product/${osGroup}.${architecture}.${configuration}\" \\
--mscorlibDir=\"\${WORKSPACE}/bin/Product/${osGroup}.${architecture}.${configuration}\" \\
--coreFxBinDir=\"\${WORKSPACE}/bin/CoreFxBinDir\" \\
--limitedDumpGeneration \\
${testEnvOpt} ${serverGCString} ${gcstressStr} ${crossgenStr} ${runcrossgentestsStr} ${runjitstressStr} \\
${runjitstressregsStr} ${runjitmioptsStr} ${runjitforcerelocsStr} ${runjitdisasmStr} ${runilasmroundtripStr} \\
${illinkStr} ${sequentialString} ${playlistString} ${layoutOnlyStr}""")
if (isGcReliabilityFramework(scenario)) {
// runtest.sh doesn't actually execute the reliability framework - do it here.
if (serverGCString != '') {
shell("export COMPlus_gcServer=1")
}
shell("./tests/scripts/run-gc-reliability-framework.sh ${architecture} ${configuration}")
}
}
}
}
if (scenario == 'coverage') {
// Publish coverage reports
Utilities.addHtmlPublisher(newJob, '${WORKSPACE}/coverage/Coverage/reports', 'Code Coverage Report', 'coreclr.html')
// TODO: Add once external email sending is available again
// addEmailPublisher(newJob, 'clrcoverage@microsoft.com')
}
if (scenario == 'jitdiff') {
Utilities.addArchival(newJob, "bin/tests/${osGroup}.${architecture}.${configuration}/dasm/**")
}
// Experimental: If on Ubuntu 14.04, then attempt to pull in crash dump links
if (os in ['Ubuntu']) {
SummaryBuilder summaries = new SummaryBuilder()
summaries.addLinksSummaryFromFile('Crash dumps from this run:', 'dumplings.txt')
summaries.emit(newJob)
}
setMachineAffinity(newJob, os, architecture)
Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
// Set timeouts to 240.
setTestJobTimeOut(newJob, scenario)
if (architecture == 'arm64') {
Utilities.setJobTimeout(newJob, 480)
}
Utilities.addXUnitDotNETResults(newJob, '**/coreclrtests.xml')
// Create a build flow to join together the build and tests required to run this
// test.
// Windows CoreCLR build and Linux CoreCLR build (in parallel) ->
// Linux CoreCLR test
def flowJobName = getJobName(configuration, architecture, os, scenario, false) + "_flow"
def fullTestJobName = projectFolder + '/' + newJob.name
// Add a reference to the input jobs for report purposes
JobReport.Report.addReference(inputCoreCLRBuildName)
JobReport.Report.addReference(inputWindowTestsBuildName)
JobReport.Report.addReference(fullTestJobName)
def newFlowJob;
// If this is a coverage job, we don't copy any input coreCLR build - instead, we build it as part of the flow job,
// so that coverage data can be preserved.
if (scenario == 'coverage') {
newFlowJob = buildFlowJob(Utilities.getFullJobName(project, flowJobName, isPR, folder)) {
buildFlow("""
// Build the input Windows job
windowsBuildJob = build(params, '${inputWindowTestsBuildName}')
// And then build the test build
build(params + [CORECLR_WINDOWS_BUILD: windowsBuildJob.build.number], '${fullTestJobName}')
""")
}
// Normal jobs copy a Windows build & a non-Windows build
} else {
newFlowJob = buildFlowJob(Utilities.getFullJobName(project, flowJobName, isPR, folder)) {
buildFlow("""
// Build the input jobs in parallel
parallel (
{ coreclrBuildJob = build(params, '${inputCoreCLRBuildName}') },
{ windowsBuildJob = build(params, '${inputWindowTestsBuildName}') }
)
// And then build the test build
build(params + [CORECLR_BUILD: coreclrBuildJob.build.number,
CORECLR_WINDOWS_BUILD: windowsBuildJob.build.number], '${fullTestJobName}')
""")
}
}
setMachineAffinity(newFlowJob, os, architecture)
Utilities.standardJobSetup(newFlowJob, project, isPR, "*/${branch}")
addTriggers(newFlowJob, branch, isPR, architecture, os, configuration, scenario, true, false)
} // configuration
} // os
} // architecture
} // isPR
} // scenario
JobReport.Report.generateJobReport(out)
// Make the call to generate the help job
Utilities.createHelperJob(this, project, branch,
"Welcome to the ${project} Repository", // This is prepended to the help message
"Have a nice day!") // This is appended to the help message. You might put known issues here.
Utilities.addCROSSCheck(this, project, branch)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangrong/coreclr.git
git@gitee.com:zhangrong/coreclr.git
zhangrong
coreclr
coreclr
master

搜索帮助