Enable Alpine CI (#15502)
authorJan Vorlicek <janvorli@microsoft.com>
Wed, 13 Dec 2017 22:05:45 +0000 (23:05 +0100)
committerGitHub <noreply@github.com>
Wed, 13 Dec 2017 22:05:45 +0000 (23:05 +0100)
* Enable Alpine CI

This enables Alpine CI leg on every PR using the pipelines.

buildpipeline/alpine.3.6.groovy [new file with mode: 0644]
buildpipeline/pipelinejobs.groovy [new file with mode: 0644]

diff --git a/buildpipeline/alpine.3.6.groovy b/buildpipeline/alpine.3.6.groovy
new file mode 100644 (file)
index 0000000..d82ae72
--- /dev/null
@@ -0,0 +1,24 @@
+@Library('dotnet-ci') _
+
+// Incoming parameters.  Access with "params.<param name>".
+// Note that the parameters will be set as env variables so we cannot use names that conflict
+// with the engineering system parameter names.
+// CGroup - Build configuration.
+// TestOuter - If true, runs outerloop, if false runs just innerloop
+
+simpleDockerNode('microsoft/dotnet-buildtools-prereqs:alpine-3.6-3148f11-20171119021156') {
+    stage ('Checkout source') {
+        checkoutRepo()
+    }
+
+    stage ('Initialize tools') {
+        // Init tools
+        sh './init-tools.sh'
+    }
+    stage ('Sync') {
+        sh "./sync.sh"
+    }
+    stage ('Build Product') {
+        sh "./build.sh -x64 -${params.CGroup} -skiprestore -stripSymbols -portablebuild=false"
+    }
+}
diff --git a/buildpipeline/pipelinejobs.groovy b/buildpipeline/pipelinejobs.groovy
new file mode 100644 (file)
index 0000000..af85f51
--- /dev/null
@@ -0,0 +1,55 @@
+// Import the utility functionality.
+
+import jobs.generation.JobReport;
+import jobs.generation.Utilities;
+import org.dotnet.ci.pipelines.Pipeline
+
+// The input project name (e.g. dotnet/coreclr)
+def project = GithubProject
+// The input branch name (e.g. master)
+def branch = GithubBranchName
+
+// **************************
+// Define innerloop testing. Any configuration in ForPR will run for every PR but all other configurations
+// will have a trigger that can be
+// **************************
+
+def alpine36Pipeline = Pipeline.createPipelineForGithub(this, project, branch, 'buildpipeline/alpine.3.6.groovy')
+
+def configurations = [
+    ['TGroup':"netcoreapp", 'Pipeline':alpine36Pipeline, 'Name':'Alpine.3.6' ,'ForPR':"Debug-x64", 'Arch':['x64']],
+]
+
+configurations.each { config ->
+ ['Debug', 'Release'].each { configurationGroup ->
+  (config.Arch ?: ['x64', 'x86']).each { archGroup ->
+    def triggerName = "${config.Name} ${archGroup} ${configurationGroup} Build"
+
+    def pipeline = config.Pipeline
+    def params = ['TGroup':config.TGroup,
+                  'CGroup':configurationGroup,
+                  'AGroup':archGroup,
+                  'TestOuter': false]
+
+    // Add default PR triggers for particular configurations but manual triggers for all
+    if (config.ForPR.contains("${configurationGroup}-${archGroup}")) {
+        pipeline.triggerPipelineOnEveryGithubPR(triggerName, params)
+    }
+    else {
+        pipeline.triggerPipelineOnGithubPRComment(triggerName, params)
+    }
+
+    // Add trigger for all configurations to run on merge
+    pipeline.triggerPipelineOnGithubPush(params)
+
+    // Add optional PR trigger for Outerloop test runs
+    params.TestOuter = true
+    pipeline.triggerPipelineOnGithubPRComment("Outerloop ${triggerName}", params)
+}}}
+
+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.