netci.groovy 9.2 KB
Newer Older
1 2 3
// Groovy Script: http://www.groovy-lang.org/syntax.html
// Jenkins DSL: https://github.com/jenkinsci/job-dsl-plugin/wiki

4
import jobs.generation.*;
J
Jared Parsons 已提交
5

J
Jared Parsons 已提交
6 7 8 9 10 11
// The input project name (e.g. dotnet/corefx)
def projectName = GithubProject
// The input branch name (e.g. master)
def branchName = GithubBranchName
// Folder that the project jobs reside in (project/branch)
def projectFoldername = Utilities.getFolderName(projectName) + '/' + Utilities.getFolderName(branchName)
J
Jared Parsons 已提交
12

J
Jared Parsons 已提交
13
static void addRoslynJob(def myJob, String jobName, String branchName, Boolean isPr, String triggerPhraseExtra, Boolean triggerPhraseOnly = false) {
14 15 16 17 18 19 20
  def archiveSettings = new ArchivalSettings()
  archiveSettings.addFiles('Binaries/**/*.pdb')
  archiveSettings.addFiles('Binaries/**/*.xml')
  archiveSettings.addFiles('Binaries/**/*.log')
  archiveSettings.addFiles('Binaries/**/*.dmp')
  archiveSettings.addFiles('Binaries/**/*.zip')
  archiveSettings.addFiles('Binaries/**/*.png')
21 22
  archiveSettings.addFiles('Binaries/**/*.buildlog')
  archiveSettings.addFiles('Binaries/**/*.binlog')
23 24 25 26 27 28 29
  archiveSettings.excludeFiles('Binaries/Obj/**')
  archiveSettings.excludeFiles('Binaries/Bootstrap/**')
  archiveSettings.excludeFiles('Binaries/**/nuget*.zip')
  // Only archive if failed/aborted
  archiveSettings.setArchiveOnFailure()
  archiveSettings.setFailIfNothingArchived()
  Utilities.addArchival(myJob, archiveSettings)
30

31
  // Create the standard job.  This will setup parameter, SCM, timeout, etc ...
32
  def projectName = 'dotnet/roslyn'
33 34

  // Need to setup the triggers for the job
J
Jared Parsons 已提交
35
  if (isPr) {
36 37 38
    // Note the use of ' vs " for the 4th argument. We don't want groovy to interpolate this string (the ${ghprbPullId}
    // is resolved when the job is run based on an environment variable set by the Jenkins Pull Request Builder plugin.
    Utilities.standardJobSetupPR(myJob, projectName, null, '+refs/pull/${ghprbPullId}/*:refs/remotes/origin/pr/${ghprbPullId}/*');
J
Jared Parsons 已提交
39 40 41 42
    def triggerCore = "open|all|${jobName}"
    if (triggerPhraseExtra) {
      triggerCore = "${triggerCore}|${triggerPhraseExtra}"
    }
43
    def triggerPhrase = "(?im)^\\s*(@?dotnet-bot\\,?\\s+)?(re)?test\\s+(${triggerCore})(\\s+please\\.?)?\\s*\$";
J
Jared Parsons 已提交
44 45
    def contextName = jobName
    Utilities.addGithubPRTriggerForBranch(myJob, branchName, contextName, triggerPhrase, triggerPhraseOnly)
46
  } else {
47
    Utilities.standardJobSetupPush(myJob, projectName, "*/${branchName}");
48
    Utilities.addGithubPushTrigger(myJob)
M
Matt Mitchell 已提交
49 50
    // TODO: Add once external email sending is available again
    // addEmailPublisher(myJob)
51 52 53
  }
}

J
Jared Parsons 已提交
54 55 56 57 58 59
// True when this is a PR job, false for commit.  On feature branches we do PR jobs only. 
def commitPullList = [false, true]
if (branchName.startsWith("features/")) {
  commitPullList = [true]
} 

60
// Windows Desktop CLR
J
Jared Parsons 已提交
61 62
commitPullList.each { isPr -> 
  ['debug', 'release'].each { configuration ->
63
        ['unit32', 'unit64'].each { buildTarget ->
J
Jared Parsons 已提交
64
      def jobName = Utilities.getFullJobName(projectName, "windows_${configuration}_${buildTarget}", isPr)
65
            def myJob = job(jobName) {
J
Jared Parsons 已提交
66
        description("Windows ${configuration} tests on ${buildTarget}")
67
                  steps {
J
Jared Parsons 已提交
68
                    batchFile(""".\\build\\scripts\\cibuild.cmd ${(configuration == 'debug') ? '-debug' : '-release'} ${(buildTarget == 'unit32') ? '-test32' : '-test64'} -testDesktop""")
69 70
                  }
                }
J
Jared Parsons 已提交
71

72
      def triggerPhraseOnly = false
J
Jared Parsons 已提交
73
      def triggerPhraseExtra = ""
74
      Utilities.setMachineAffinity(myJob, 'Windows_NT', 'win2016-base')
J
Jared Parsons 已提交
75 76
      Utilities.addXUnitDotNETResults(myJob, '**/xUnitResults/*.xml')
      addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
77 78 79 80 81 82 83 84 85 86 87
    }
  }
}

// Windows CoreCLR
commitPullList.each { isPr ->
  ['debug', 'release'].each { configuration ->
    def jobName = Utilities.getFullJobName(projectName, "windows_coreclr_test", isPr)
    def myJob = job(jobName) {
      description("Windows CoreCLR unit tests")
            steps {
J
Jared Parsons 已提交
88
              batchFile(""".\\build\\scripts\\cibuild.cmd ${(configuration == 'debug') ? '-debug' : '-release'} -testCoreClr""")
89
            }
90
    }
J
Jared Parsons 已提交
91 92 93 94 95 96

    def triggerPhraseOnly = false
    def triggerPhraseExtra = ""
    Utilities.setMachineAffinity(myJob, 'Windows_NT', 'win2016-base')
    Utilities.addXUnitDotNETResults(myJob, '**/xUnitResults/*.xml')
    addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
97
  }
J
Jared Parsons 已提交
98
}
99

T
Ty Overby 已提交
100
// Ubuntu 14.04
J
Jared Parsons 已提交
101
commitPullList.each { isPr -> 
T
Ty Overby 已提交
102
  def jobName = Utilities.getFullJobName(projectName, "ubuntu_14_debug", isPr)
J
Jared Parsons 已提交
103
  def myJob = job(jobName) {
T
Ty Overby 已提交
104
    description("Ubuntu 14.04 tests")
105
                  steps {
106
                    shell("./cibuild.sh --debug")
107 108
                  }
                }
109

J
Jared Parsons 已提交
110
  def triggerPhraseOnly = false
J
Jared Parsons 已提交
111
  def triggerPhraseExtra = "linux"
112
  Utilities.setMachineAffinity(myJob, 'Ubuntu14.04', 'latest-or-auto')
J
Jared Parsons 已提交
113
  Utilities.addXUnitDotNETResults(myJob, '**/xUnitResults/*.xml')
T
Ty Overby 已提交
114 115 116 117 118 119 120 121 122
  addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
}

// Ubuntu 16.04
commitPullList.each { isPr -> 
  def jobName = Utilities.getFullJobName(projectName, "ubuntu_16_debug", isPr)
  def myJob = job(jobName) {
    description("Ubuntu 16.04 tests")
                  steps {
123
                    shell("./cibuild.sh --debug")
T
Ty Overby 已提交
124 125 126 127 128 129 130
                  }
                }

  def triggerPhraseOnly = false
  def triggerPhraseExtra = "linux"
  Utilities.setMachineAffinity(myJob, 'Ubuntu16.04', 'latest-or-auto')
  Utilities.addXUnitDotNETResults(myJob, '**/xUnitResults/*.xml')
J
Jared Parsons 已提交
131 132 133 134 135 136 137 138
  addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
}

// Mac
commitPullList.each { isPr -> 
  def jobName = Utilities.getFullJobName(projectName, "mac_debug", isPr)
  def myJob = job(jobName) {
    description("Mac tests")
139
    steps {
140
      shell("./cibuild.sh --debug")
141 142
    }
  }
J
Jared Parsons 已提交
143 144

  def triggerPhraseOnly = true
J
Jared Parsons 已提交
145
  def triggerPhraseExtra = "mac"
146
  Utilities.setMachineAffinity(myJob, 'OSX10.12', 'latest-or-auto')
147
  Utilities.addXUnitDotNETResults(myJob, '**/xUnitResults/*.xml')
J
Jared Parsons 已提交
148
  addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
149
  }
J
Jared Parsons 已提交
150 151 152 153 154 155

// Determinism
commitPullList.each { isPr -> 
  def jobName = Utilities.getFullJobName(projectName, "windows_determinism", isPr)
  def myJob = job(jobName) {
    description('Determinism tests')
J
Jared Parsons 已提交
156
    steps {
J
Jared Parsons 已提交
157
      batchFile(""".\\build\\scripts\\cibuild.cmd -testDeterminism""")
158
    }
159
  }
160

J
Jared Parsons 已提交
161
  def triggerPhraseOnly = false
162
  def triggerPhraseExtra = "determinism"
163
  Utilities.setMachineAffinity(myJob, 'Windows_NT', 'win2016-base')
J
Jared Parsons 已提交
164 165 166 167 168 169 170 171 172
  addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
}

// Build correctness tests
commitPullList.each { isPr -> 
  def jobName = Utilities.getFullJobName(projectName, "windows_build_correctness", isPr)
  def myJob = job(jobName) {
    description('Build correctness tests')
    steps {
J
Jared Parsons 已提交
173
      batchFile(""".\\build\\scripts\\cibuild.cmd -testBuildCorrectness""")
J
Jared Parsons 已提交
174 175 176
    }
  }

J
Jared Parsons 已提交
177
  def triggerPhraseOnly = false
J
Jared Parsons 已提交
178
  def triggerPhraseExtra = ""
179
  Utilities.setMachineAffinity(myJob, 'Windows_NT', 'win2016-base')
J
Jared Parsons 已提交
180
  addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
181
}
182 183 184 185 186 187 188

// Perf Correctness
commitPullList.each { isPr ->
  def jobName = Utilities.getFullJobName(projectName, "perf_correctness", isPr)
  def myJob = job(jobName) {
    description('perf test correctness')
    steps {
J
Jared Parsons 已提交
189
      batchFile(""".\\build\\scripts\\cibuild.cmd -testPerfCorrectness""")
190 191 192
    }
  }

193
  def triggerPhraseOnly = false
194
  def triggerPhraseExtra = "perf-correctness"
195
  Utilities.setMachineAffinity(myJob, 'Windows_NT', 'latest-dev15-3-preview2')
196 197
  addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
}
J
Jared Parsons 已提交
198 199 200 201 202 203 204 205 206 207 208 209 210

// Microbuild
commitPullList.each { isPr ->
  def jobName = Utilities.getFullJobName(projectName, "microbuild", isPr)
  def myJob = job(jobName) {
    description('MicroBuild test')
    steps {
      batchFile(""".\\src\\Tools\\MicroBuild\\cibuild.cmd""")
    }
  }

  def triggerPhraseOnly = false
  def triggerPhraseExtra = "microbuild"
211
  Utilities.setMachineAffinity(myJob, 'Windows_NT', 'win2016-base')
J
Jared Parsons 已提交
212 213
  addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
}
M
Matt Mitchell 已提交
214

215
// VS Integration Tests
216
commitPullList.each { isPr ->
217 218 219 220 221 222
  ['debug', 'release'].each { configuration ->
    ['vs-integration'].each { buildTarget ->
      def jobName = Utilities.getFullJobName(projectName, "windows_${configuration}_${buildTarget}", isPr)
      def myJob = job(jobName) {
        description("Windows ${configuration} tests on ${buildTarget}")
        steps {
J
Jared Parsons 已提交
223
          batchFile(""".\\build\\scripts\\cibuild.cmd ${(configuration == 'debug') ? '-debug' : '-release'} -testVsi""")
224 225 226
        }
      }

I
Ivan Basov 已提交
227 228
      def triggerPhraseOnly = false
      def triggerPhraseExtra = ""
229
      Utilities.setMachineAffinity(myJob, 'Windows_NT', 'latest-dev15-3-preview7')
230 231
      Utilities.addXUnitDotNETResults(myJob, '**/xUnitResults/*.xml')
      addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
232 233 234 235
    }
  }
}

M
Matt Mitchell 已提交
236 237 238 239 240 241
JobReport.Report.generateJobReport(out)

// Make the call to generate the help job
Utilities.createHelperJob(this, projectName, branchName,
    "Welcome to the ${projectName} 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.