-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
167 lines (146 loc) · 4.3 KB
/
Jenkinsfile
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
@Library('jenkins-library') _
def modules = []
pipeline {
agent {
kubernetes {
defaultContainer 'jnlp'
yamlFile 'JenkinsKubernetesPod.yaml'
}
}
environment {
GH_TOKEN = credentials('ct-github-token')
TERRAFORM_CLOUD_TOKEN = credentials('ct-terraform-module')
TF_CLI_CONFIG_FILE = '/tmp/terraformrc'
ORGANIZATION_NAME = 'igorbrites'
}
options{
timeout(time: 30, unit: 'MINUTES')
timestamps()
disableConcurrentBuilds()
}
stages {
stage('Init') {
when {
not { buildingTag() }
}
steps {
container('terraform') {
sh label: 'Terraform credential file', script: """
cat <<EOF > ${env.TF_CLI_CONFIG_FILE}
credentials \"app.terraform.io\" {
token = \"${env.TERRAFORM_CLOUD_TOKEN}\"
}
EOF
""".stripIndent()
}
container('jnlp') {
sh("git config remote.origin.url https://${env.GH_TOKEN}@github.com/${env.ORGANIZATION_NAME}/terraform-modules.git")
sh('git config --global user.name "$(git log -1 --pretty=format:\'%an\')"')
sh('git config --global user.email "$(git log -1 --pretty=format:\'%ae\')"')
sh('git pull --tags')
}
container('node') {
sh('npm ci --unsafe-perm')
sh('apk add --no-cache jq git')
sh('git config --global user.name "$(git log -1 --pretty=format:\'%an\')"')
sh('git config --global user.email "$(git log -1 --pretty=format:\'%ae\')"')
script {
lernaModules = sh(
returnStdout: true,
script: "npx lerna changed --include-merged-tags --json | jq -c '[.[] | .location]'"
).trim()
if (lernaModules == "") {
lernaModules = '[]'
}
modules = readJSON(text: lernaModules)
}
}
}
}
stage('Terraform Docs') {
when {
not { branch "main" }
not { buildingTag() }
}
steps {
git branch: env.GIT_BRANCH, url: "https://${env.GH_TOKEN}@github.com/${env.ORGANIZATION_NAME}/terraform-modules.git"
script {
def jobs = [:]
modules.each {
module = it - "${env.WORKSPACE}/"
jobs[module] = {
stage("Terraform Docs for ${module}") {
container('terraform-docs') {
sh("terraform-docs -c .terraform-docs.yml ${it}")
}
sh("git add ${it}/README.md")
sh("git commit -m 'docs(${module}): generating terraform-docs [skip ci]' || true")
}
}
}
parallel jobs
}
sh(label: "Push docs to GitHub", script: "git push -u origin ${env.GIT_BRANCH}")
}
}
stage('Validation') {
when {
not { branch "main" }
not { buildingTag() }
expression { modules.size() > 0 }
}
environment {
DEFAULT_BRANCH = 'main'
}
steps {
script {
def jobs = [:]
jobs['linter'] = {
stage('Running Super Linter') {
container('linter') {
sh("DEFAULT_WORKSPACE=${env.WORKSPACE} /action/lib/linter.sh")
}
}
}
modules.each {
module = it - "${env.WORKSPACE}/"
jobs[module] = {
stage("Validating ${module}") {
container('terraform') {
dir(it) {
sh('terraform init -backend=false')
sh('terraform fmt -check -diff')
sh('terraform validate -no-color')
}
}
}
}
}
parallel jobs
}
}
}
stage('Release and publish') {
when {
branch "main"
not { buildingTag() }
expression { modules.size() > 0 }
}
environment {
DEBUG = '*'
HOME = '/home/jenkins'
}
steps {
container('node') {
git branch: env.GIT_BRANCH, url: "https://${env.GH_TOKEN}@github.com/${env.ORGANIZATION_NAME}/terraform-modules.git"
sh("LERNA_ROOT_PATH=${env.WORKSPACE} npx lerna version --yes")
}
}
}
}
post {
always {
summaryDuration()
}
}
}