forked from instructure/canvas-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile.linters
119 lines (109 loc) · 3 KB
/
Jenkinsfile.linters
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#!/usr/bin/env groovy
/*
* Copyright (C) 2019 - present Instructure, Inc.
*
* This file is part of Canvas.
*
* Canvas is free software: you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License as published by the Free
* Software Foundation, version 3 of the License.
*
* Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
def getImageTagVersion() {
def flags = load 'build/new-jenkins/groovy/commit-flags.groovy'
return flags.getImageTagVersion()
}
pipeline {
agent { label 'canvas-docker' }
options {
ansiColor('xterm')
}
environment {
COMPOSE_FILE = 'docker-compose.new-jenkins-web.yml'
GERRIT_PROJECT = 'canvas-lms'
GERRIT_PORT = '29418'
GERRIT_URL = "$GERRIT_HOST:$GERRIT_PORT"
NAME = getImageTagVersion()
PATCHSET_TAG = "$DOCKER_REGISTRY_FQDN/jenkins/canvas-lms:$NAME"
}
stages {
stage('Print Env Variables') {
steps {
timeout(time: 20, unit: 'SECONDS') {
sh 'printenv | sort'
}
}
}
stage('Gergich Setup') {
steps {
timeout(time: 3) {
script {
def credentials = load 'build/new-jenkins/groovy/credentials.groovy'
credentials.fetchFromGerrit('gergich_user_config', '.')
sh 'cp ./gergich_user_config/gergich_user_config.yml ./gems/dr_diff/config'
sh 'docker pull $PATCHSET_TAG'
}
}
}
}
stage('Linters') {
steps {
sh 'build/new-jenkins/linters/run-gergich.sh'
}
}
stage('Master Bouncer') {
steps {
sh 'build/new-jenkins/linters/run-master-bouncer.sh'
}
}
// until we can update gergich to allow us to separate the linters,
// these will be commented out
// stage('rlint') {
// steps {
// sh 'build/new-jenkins/linters/run-rlint.sh'
// }
// }
// stage('brakeman') {
// steps {
// sh 'build/new-jenkins/linters/run-brakeman.sh'
// }
// }
// stage('commit message') {
// steps {
// sh 'build/new-jenkins/linters/run-commit-message.sh'
// }
// }
// stage('tatl tael') {
// steps {
// sh 'build/new-jenkins/linters/run-tatl-tael.sh'
// }
// }
// stage('ESLint - JSX') {
// steps {
// sh 'build/new-jenkins/linters/run-eslint.sh'
// }
// }
// stage('Stylelint') {
// steps {
// sh 'build/new-jenkins/linters/run-stylelint.sh'
// }
// }
// stage('XSSLint') {
// steps {
// sh 'build/new-jenkins/linters/run-xss.sh'
// }
// }
}
post {
cleanup {
sh 'build/new-jenkins/docker-cleanup.sh'
}
}
}