source: Jenkins/tools.groovy @ 6a531ab

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 6a531ab was 6a531ab, checked in by Thierry Delisle <tdelisle@…>, 3 years ago

Quick build now uses new AST.
Moved some more common code to tools.groovy.

  • Property mode set to 100644
File size: 3.3 KB
Line 
1#!groovy
2
3import groovy.transform.Field
4
5// For skipping stages
6import org.jenkinsci.plugins.pipeline.modeldefinition.Utils
7
8// Global for the stage name
9StageName = ''
10
11// wrapper around stage declaretion to be more verbose
12// and allow showing as skipped in the UI
13def BuildStage(String name, boolean run, Closure block ) {
14        StageName = name
15        echo " -------- ${StageName} -------- "
16        if(run) {
17                stage(name, block)
18        } else {
19                stage(name) { Utils.markStageSkippedForConditional(STAGE_NAME) }
20        }
21}
22
23//===========================================================================================================
24// Common compilation routines
25//===========================================================================================================
26def Clean() {
27        BuildStage('Cleanup', true) {
28                // clean the build by wipping the build directory
29                dir(BuildDir) {
30                        deleteDir()
31                }
32        }
33}
34
35def Checkout(commitHash = null) {
36        BuildStage('Checkout', true) {
37                //checkout the source code and clean the repo
38                if(commitHash) {
39                        final scmVars = checkout([$class: 'GitSCM', branches: [[name: commitHash ]]])
40                        echo GitLogMessage(scmVars.GIT_COMMIT, scmVars.GIT_PREVIOUS_COMMIT)
41                } else {
42
43                        final scmVars = checkout scm
44                        echo GitLogMessage(scmVars.GIT_COMMIT, scmVars.GIT_PREVIOUS_COMMIT)
45                }
46        }
47}
48
49//===========================================================================================================
50//Routine responsible of sending the email notification once the build is completed
51//===========================================================================================================
52@NonCPS
53def SplitLines(String text) {
54        def list = []
55
56        text.eachLine {
57                list += it
58        }
59
60        return list
61}
62
63PrevGitOldRef = ''
64PrevGitNewRef = ''
65def GitLogMessage(String oldRef = '', String newRef = '') {
66        if (!PrevGitOldRef || !oldRef) return "\nERROR retrieveing git information!\n"
67        PrevGitOldRef = oldRef
68
69        if (!PrevGitNewRef || !newRef) return "\nERROR retrieveing git information!\n"
70        PrevGitNewRef = newRef
71
72        def revText = sh(returnStdout: true, script: "git rev-list ${oldRef}..${newRef}").trim()
73        def revList = SplitLines( revText )
74
75        def gitUpdate = ""
76        revList.each { rev ->
77                def type = sh(returnStdout: true, script: "git cat-file -t ${rev}").trim()
78                gitUpdate = gitUpdate + "       via  ${rev} (${type})"
79        }
80
81        def rev = oldRef
82        def type = sh(returnStdout: true, script: "git cat-file -t ${rev}").trim()
83        gitUpdate = gitUpdate + "      from  ${rev} (${type})"
84
85        def gitLog    = sh(returnStdout: true, script: "git rev-list --format=short ${oldRef}...${newRef}").trim()
86
87        def gitDiff   = sh(returnStdout: true, script: "git diff --stat --color ${newRef} ${oldRef}").trim()
88        gitDiff = gitDiff.replace('[32m', '<span style="color: #00AA00;">')
89        gitDiff = gitDiff.replace('[31m', '<span style="color: #AA0000;">')
90        gitDiff = gitDiff.replace('[m', '</span>')
91
92        return """
93<pre>
94The branch ${env.BRANCH_NAME} has been updated.
95${gitUpdate}
96</pre>
97
98<p>Check console output at ${env.BUILD_URL} to view the results.</p>
99
100<p>- Status --------------------------------------------------------------</p>
101
102<p>BUILD# ${env.BUILD_NUMBER} - ${currentBuild.result}</p>
103
104<p>- Log -----------------------------------------------------------------</p>
105
106<pre>
107${gitLog}
108</pre>
109
110<p>-----------------------------------------------------------------------</p>
111<pre>
112Summary of changes:
113${gitDiff}
114</pre>
115"""
116}
117
118return this;
Note: See TracBrowser for help on using the repository browser.