-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRakefile
216 lines (184 loc) · 4.64 KB
/
Rakefile
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
# frozen_string_literal: true
require 'rake_circle_ci'
require 'rake_git'
require 'rake_git_crypt'
require 'rake_github'
require 'rake_gpg'
require 'rake_ssh'
require 'rubocop/rake_task'
require 'securerandom'
require 'yaml'
task default: :'checks:all'
RakeGitCrypt.define_standard_tasks(
namespace: :git_crypt,
provision_secrets_task_name: :'secrets:provision',
destroy_secrets_task_name: :'secrets:destroy',
install_commit_task_name: :'git:commit',
uninstall_commit_task_name: :'git:commit',
gpg_user_key_paths: %w[
config/gpg
config/secrets/ci/gpg.public
]
)
namespace :git do
RakeGit.define_commit_task(
argument_names: [:message]
) do |t, args|
t.message = args.message
end
end
namespace :encryption do
namespace :directory do
desc 'Ensure CI secrets directory exists.'
task :ensure do
FileUtils.mkdir_p('config/secrets/ci')
end
end
namespace :passphrase do
desc 'Generate encryption passphrase for CI GPG key'
task generate: ['directory:ensure'] do
File.write(
'config/secrets/ci/encryption.passphrase',
SecureRandom.base64(36)
)
end
end
end
namespace :keys do
namespace :deploy do
RakeSSH.define_key_tasks(
path: 'config/secrets/ci/',
comment: 'maintainers@infrablocks.io'
)
end
namespace :gpg do
RakeGPG.define_generate_key_task(
output_directory: 'config/secrets/ci',
name_prefix: 'gpg',
owner_name: 'InfraBlocks Maintainers',
owner_email: 'maintainers@infrablocks.io',
owner_comment: 'concourse.js CI Key'
)
end
end
namespace :secrets do
namespace :directory do
desc 'Ensure secrets directory exists and is set up correctly'
task :ensure do
FileUtils.mkdir_p('config/secrets')
unless File.exist?('config/secrets/.unlocked')
File.write('config/secrets/.unlocked', 'true')
end
end
end
desc 'Generate all generatable secrets.'
task generate: %w[
encryption:passphrase:generate
keys:deploy:generate
keys:gpg:generate
]
desc 'Provision all secrets.'
task provision: [:generate]
desc 'Delete all secrets.'
task :destroy do
rm_rf 'config/secrets'
end
desc 'Rotate all secrets.'
task rotate: [:'git_crypt:reinstall']
end
RuboCop::RakeTask.new
namespace :build do
desc 'Run all checks of the library'
task check: [:rubocop]
desc 'Attempt to automatically fix issues with the library'
task fix: [:'rubocop:autocorrect_all']
end
RakeCircleCI.define_project_tasks(
namespace: :circle_ci,
project_slug: 'github/infrablocks/concourse.js'
) do |t|
circle_ci_config =
YAML.load_file('config/secrets/circle_ci/config.yaml')
t.api_token = circle_ci_config['circle_ci_api_token']
t.environment_variables = {
ENCRYPTION_PASSPHRASE:
File.read('config/secrets/ci/encryption.passphrase')
.chomp
}
t.checkout_keys = []
t.ssh_keys = [
{
hostname: 'github.com',
private_key: File.read('config/secrets/ci/ssh.private')
}
]
end
RakeGithub.define_repository_tasks(
namespace: :github,
repository: 'infrablocks/concourse.js'
) do |t|
github_config =
YAML.load_file('config/secrets/github/config.yaml')
t.access_token = github_config['github_personal_access_token']
t.deploy_keys = [
{
title: 'CircleCI',
public_key: File.read('config/secrets/ci/ssh.public')
}
]
end
namespace :pipeline do
desc 'Prepare CircleCI Pipeline'
task prepare: %i[
circle_ci:env_vars:ensure
circle_ci:checkout_keys:ensure
circle_ci:ssh_keys:ensure
github:deploy_keys:ensure
]
end
namespace :checks do
task all: %i[
build:fix
library:lintFix
library:build
test:unit
]
end
namespace :dependencies do
desc 'Install library dependencies'
task :install do
sh 'npm install'
end
end
namespace :test do
desc 'Run unit tests'
task unit: [:'dependencies:install'] do
sh 'npm run test'
end
end
namespace :library do
desc 'Check for lint issues'
task lint: [:'dependencies:install'] do
sh 'npm run lint'
end
desc 'Fix lint issues'
task lintFix: [:'dependencies:install'] do
sh 'npm run lintFix'
end
desc 'Build library'
task build: [:'dependencies:install'] do
sh 'npm run build'
end
desc 'Publish library'
task release: %i[dependencies:install library:build] do
sh 'npm publish'
end
end
namespace :version do
desc 'Bump version for specified type (pre, minor, next)'
task :bump, [:type] => [:'dependencies:install'] do |_, args|
sh "npm run version:bump:#{args.type}" \
'&& export LAST_MESSAGE="$(git log -1 --pretty=%B)" ' \
'&& git commit -a --amend -m "${LAST_MESSAGE} [ci skip]"'
end
end