forked from freedomofpress/securedrop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
622 lines (533 loc) · 20.1 KB
/
Makefile
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
DEFAULT_GOAL: help
SHELL := /bin/bash
GCLOUD_VERSION := 222.0.0-1
SDROOT := $(shell git rev-parse --show-toplevel)
TAG ?= $(shell git rev-parse HEAD)
STABLE_VER := $(shell cat molecule/shared/stable.ver)
SDBIN := $(SDROOT)/securedrop/bin
DEVSHELL := $(SDBIN)/dev-shell
######################################
#
# Python environments and dependencies
#
######################################
.PHONY: venv
venv: hooks ## Provision a Python 3 virtualenv for development.
@echo "███ Preparing Python 3 virtual environment..."
@$(SDROOT)/devops/scripts/boot-strap-venv.sh
@echo "Make sure to run: source .venv/bin/activate"
@echo
.PHONY: update-admin-pip-requirements
update-admin-pip-requirements: ## Update admin requirements.
@make -s -C admin update-pip-requirements
.PHONY: update-python3-requirements
update-python3-requirements: ## Update Python 3 requirements with pip-compile.
@echo "███ Updating Python 3 requirements files..."
@SLIM_BUILD=1 $(DEVSHELL) pip-compile --generate-hashes \
--allow-unsafe \
--output-file requirements/python3/develop-requirements.txt \
requirements/python3/translation-requirements.in \
requirements/python3/develop-requirements.in
@SLIM_BUILD=1 $(DEVSHELL) pip-compile --generate-hashes \
--allow-unsafe \
--output-file requirements/python3/test-requirements.txt \
requirements/python3/test-requirements.in
@SLIM_BUILD=1 $(DEVSHELL) pip-compile --generate-hashes \
--allow-unsafe \
--output-file requirements/python3/requirements.txt \
requirements/python3/requirements.in
@SLIM_BUILD=1 $(DEVSHELL) pip-compile --generate-hashes \
--allow-unsafe \
--output-file requirements/python3/bootstrap-requirements.txt \
requirements/python3/bootstrap-requirements.in
@SLIM_BUILD=1 $(DEVSHELL) pip-compile --generate-hashes \
--allow-unsafe \
--output-file requirements/python3/translation-requirements.txt \
requirements/python3/translation-requirements.in
.PHONY: update-pip-requirements
update-pip-requirements: update-admin-pip-requirements update-python3-requirements ## Update all requirements with pip-compile.
#################
#
# Static analysis
#
#################
.PHONY: check-black
check-black: ## Check Python source code formatting with black
@echo "███ Running black check..."
@black --check --diff .
@echo
.PHONY: black
black: ## Update Python source code formatting with black
@black securedrop .
.PHONY: ansible-config-lint
ansible-config-lint: ## Run custom Ansible linting tasks.
@echo "███ Linting Ansible configuration..."
@molecule verify -s ansible-config
@echo
.PHONY: app-lint
app-lint: ## Test pylint compliance.
@echo "███ Linting application code..."
@cd securedrop && find . -name '*.py' -or -path './scripts/*' | xargs pylint --reports=no --errors-only \
--disable=no-name-in-module \
--disable=import-error \
--disable=no-member \
--max-line-length=100
@echo
.PHONY: app-lint-full
app-lint-full: ## Test pylint compliance, with no checks disabled.
@echo "███ Linting application code with no checks disabled..."
@cd securedrop && find . -name '*.py' -or -path './scripts/*' | xargs pylint
@echo
.PHONY: check-ruff
check-ruff: ## Lint Python source files.
@echo "███ Running ruff..."
@ruff check . --show-source
@echo
.PHONY: ruff
ruff: ## Update Python source file formatting.
@ruff check . --fix
# The --disable=names is required to use the BEM syntax
# # https://csswizardry.com/2013/01/mindbemding-getting-your-head-round-bem-syntax/
.PHONY: html-lint
html-lint: ## Validate HTML in web application template files.
@echo "███ Linting application templates..."
@html_lint.py --printfilename --disable=optional_tag,extra_whitespace,indentation,names,quotation \
securedrop/source_templates/*.html securedrop/journalist_templates/*.html
@echo
.PHONY: rust-lint
rust-lint: ## Lint Rust code
@echo "███ Linting Rust code..."
cargo fmt --check
cargo clippy
.PHONY: shellcheck
shellcheck: ## Lint shell scripts.
@echo "███ Linting shell scripts..."
@$(SDROOT)/devops/scripts/shellcheck.sh
@echo
.PHONY: typelint
typelint: ## Run mypy type linting.
@echo "███ Running mypy type checking..."
@$(SDROOT)/securedrop/bin/run-mypy
@echo
.PHONY: yamllint
yamllint: ## Lint YAML files (does not validate syntax!).
@echo "███ Linting YAML files..."
@yamllint --strict .
@echo
# While the order mostly doesn't matter here, keep "check-ruff" first, since it
# gives the broadest coverage and runs (and therefore fails) fastest.
.PHONY: lint
lint: check-ruff ansible-config-lint app-lint check-black html-lint shellcheck typelint yamllint check-strings check-supported-locales check-desktop-files ## Runs all lint checks
.PHONY: safety
safety: ## Run `safety check` to check python dependencies for vulnerabilities.
@command -v safety || (echo "Please run 'pip install -U safety'."; exit 1)
@echo "███ Running safety..."
@for req_file in `find . -type f -name '*requirements.txt' | grep -v .venv`; do \
echo "Checking file $$req_file" \
&& safety check \
--ignore 42923 \
--ignore 42926 \
--ignore 45185 \
--ignore 49337 \
--ignore 51385 \
--ignore 51668 \
--ignore 52322 \
--ignore 52495 \
--ignore 52510 \
--ignore 52518 \
--ignore 53048 \
--ignore 53868 \
--ignore 53869 \
--ignore 54219 \
--ignore 54229 \
--ignore 54230 \
--ignore 54421 \
--ignore 54564 \
--ignore 54709 \
--ignore 55261 \
--ignore 58912 \
--ignore 59473 \
--ignore 60026 \
--ignore 60350 \
--ignore 60789 \
--ignore 60841 \
--ignore 61601 \
--ignore 61893 \
--ignore 62019 \
--ignore 62044 \
--ignore 62817 \
--ignore 63066 \
--ignore 63227 \
--ignore 65193 \
--ignore 65212 \
--ignore 65278 \
--ignore 65401 \
--ignore 65505 \
--ignore 65510 \
--ignore 65511 \
--ignore 65647 \
--ignore 66667 \
--ignore 66700 \
--ignore 66704 \
--ignore 66710 \
--ignore 66777 \
--ignore 67599 \
--ignore 67895 \
--ignore 70612 \
--ignore 70895 \
--ignore 71064 \
--ignore 71591 \
--ignore 71594 \
--ignore 71595 \
--ignore 71608 \
--ignore 71680 \
--ignore 71681 \
--ignore 71684 \
--full-report -r $$req_file \
&& echo -e '\n' \
|| exit 1; \
done
@echo
# Semgrep is a static code analysis tool to detect security vulnerabilities in Python applications
# This configuration uses the public "p/r2c-security-audit" ruleset
.PHONY: semgrep
semgrep:
@command -v semgrep || (echo "Please run 'pip install -U semgrep'."; exit 1)
@echo "███ Running semgrep on securedrop/..."
@semgrep --exclude "securedrop/tests/" --error --strict --metrics off --max-chars-per-line 200 --verbose --config "p/r2c-security-audit" securedrop
@echo
# check dependencies in Cargo.lock
.PHONY: rust-audit
rust-audit:
@echo "███ Running Rust dependency checks..."
@cargo install cargo-audit
@cargo audit
@echo
#############
#
# Development
#
#############
securedrop/config.py: ## Generate the test SecureDrop application config.
@echo "███ Generating securedrop/config.py..."
@cd securedrop && source_secret_key=$(shell head -c 32 /dev/urandom | base64) \
journalist_secret_key=$(shell head -c 32 /dev/urandom | base64) \
scrypt_id_pepper=$(shell head -c 32 /dev/urandom | base64) \
scrypt_gpg_pepper=$(shell head -c 32 /dev/urandom | base64) \
python -c 'import os; from jinja2 import Environment, FileSystemLoader; \
env = Environment(loader=FileSystemLoader(".")); \
ctx = {"securedrop_app_gpg_fingerprint": "65A1B5FF195B56353CC63DFFCC40EF1228271441"}; \
ctx.update(dict((k, {"stdout":v}) for k,v in os.environ.items())); \
ctx = open("config.py", "w").write(env.get_template("config.py.example").render(ctx))'
@echo >> securedrop/config.py
@echo "SUPPORTED_LOCALES = $$(make --quiet supported-locales)" >> securedrop/config.py
@echo "SUPPORTED_LOCALES.append('en_US')" >> securedrop/config.py
@echo
HOOKS_DIR=.githooks
.PHONY: hooks
hooks: ## Configure Git to use the hooks provided by this repository
git config core.hooksPath "$(HOOKS_DIR)"
.PHONY: test-config
test-config: securedrop/config.py
.PHONY: dev
dev: ## Run the development server in a Docker container.
@echo "███ Starting development server..."
@OFFSET_PORTS='false' DOCKER_BUILD_VERBOSE='true' SLIM_BUILD=1 $(DEVSHELL) $(SDBIN)/run
@echo
.PHONY: dev-tor
dev-tor: ## Run the development server with onion services in a Docker container.
@echo "███ Starting development server with onion services..."
@OFFSET_PORTS='false' DOCKER_BUILD_VERBOSE='true' USE_TOR='true' SLIM_BUILD=1 $(DEVSHELL) $(SDBIN)/run
@echo
.PHONY: demo-landing-page
demo-landing-page: ## Serve the landing page for the SecureDrop demo
@echo "███ Building Docker image..."
docker build -t sd-demo-landing-page -f devops/demo/landing-page/Dockerfile .
@echo "███ Running container and serving on port 8000..."
docker run -p 8000:8000 sd-demo-landing-page
.PHONY: staging
staging: ## Create a local staging environment in virtual machines (Focal)
@echo "███ Creating staging environment on Ubuntu Focal..."
@$(SDROOT)/devops/scripts/create-staging-env focal
@echo
.PHONY: testinfra
testinfra: ## Run infra tests against a local staging environment.
@echo "███ Creating staging environment..."
@MOLECULE_ACTION=verify $(SDROOT)/devops/scripts/create-staging-env
@echo
.PHONY: self-signed-https-certs
self-signed-https-certs: ## Generate self-signed certs for testing the HTTPS config.
@echo "███ Generating self-signed HTTPS certs for testing..."
@$(SDROOT)/devops/generate-self-signed-https-certs.sh
@echo
.PHONY: clean
clean: ## DANGER! Delete all uncommitted files, virtual machines, Onion addresses, etc.
@$(SDROOT)/devops/clean
@echo
.PHONY: otp
otp: ## Show (and opportunistically copy) the current development OTP (to the clipboard)
@$(SDROOT)/devops/scripts/otp-code.sh
#########
#
# Testing
#
#########
.PHONY: test
test: ## Run the test suite in a Docker container.
@echo "███ Running SecureDrop application tests..."
@$(DEVSHELL) $(SDBIN)/run-test -v $${TESTFILES:-tests}
@echo
.PHONY: test-focal
test-focal: test
.PHONY: rust-test
rust-test:
@echo "███ Running Rust tests..."
cargo test
.PHONY: validate-test-html
validate-test-html:
@echo "███ Validating HTML source from $(shell find securedrop/tests/functional/pageslayout/html -name "*.html" | wc -l | xargs echo -n) page-layout test(s)"
@$(DEVSHELL) html5validator tests/functional/pageslayout/html
@echo
.PHONY: accessibility-summary
accessibility-summary:
@echo "███ Processing accessibility results..."
@$(DEVSHELL) $(SDBIN)/summarize-accessibility-info
cat securedrop/tests/functional/pageslayout/accessibility-info/summary.txt
.PHONY: docker-vnc
docker-vnc: ## Open a VNC connection to a running Docker instance.
@echo "███ Opening VNC connection to dev container..."
@$(SDROOT)/devops/scripts/vnc-docker-connect.sh
@echo
.PHONY: upgrade-start
upgrade-start: ## Create a local apt server for testing upgrades in VMs
@echo "███ Starting upgrade test environment..."
molecule converge -s upgrade
@echo
.PHONY: upgrade-destroy
upgrade-destroy: ## Destroy an upgrade test environment.
@echo "███ Destroying upgrade test environment..."
molecule destroy -s upgrade
@echo
##############
#
# Localization
#
##############
# Global configuration:
I18N_CONF=securedrop/i18n.json
I18N_LIST=securedrop/i18n.rst
# securedrop/securedrop configuration:
LOCALE_DIR=securedrop/translations
POT=$(LOCALE_DIR)/messages.pot
# securedrop/desktop configuration:
DESKTOP_BASE=install_files/ansible-base/roles/tails-config/templates
DESKTOP_LOCALE_DIR=$(DESKTOP_BASE)/locale
DESKTOP_I18N_CONF=$(DESKTOP_LOCALE_DIR)/LINGUAS
DESKTOP_POT=$(DESKTOP_LOCALE_DIR)/messages.pot
## Global
.PHONY: check-strings
check-strings: $(POT) $(DESKTOP_POT) ## Check that the translation catalogs are up to date with source code.
@echo "███ Checking translation catalogs..."
@$(MAKE) --no-print-directory extract-strings
@git diff --quiet $^ || { echo "Translation catalogs are out of date. Please run \"make extract-strings\" and commit the changes."; exit 1; }
.PHONY: extract-strings
extract-strings: $(POT) $(DESKTOP_POT) ## Extract translatable strings from source code.
@$(MAKE) --always-make --no-print-directory $^
## securedrop/securedrop
# Derive POT from sources.
$(POT): securedrop
@echo "updating catalog template: $@"
@mkdir -p ${LOCALE_DIR}
@pybabel extract \
-F securedrop/babel.cfg \
--charset=utf-8 \
--output=${POT} \
--project="SecureDrop" \
--msgid-bugs-address=securedrop@freedom.press \
--copyright-holder="Freedom of the Press Foundation" \
--add-comments="Translators:" \
--strip-comments \
--add-location=never \
--no-wrap \
--ignore-dirs tests \
$^
@sed -i -e '/^"POT-Creation-Date/d' $@
## securedrop/desktop
.PHONY: check-desktop-files
check-desktop-files: ${DESKTOP_BASE}/*.j2
@echo "███ Checking desktop translation catalogs..."
@$(MAKE) --always-make --no-print-directory update-desktop-files
@git diff --quiet $^ || { echo "Desktop files are out of date. Please run \"make update-desktop-files\" and commit the changes. (If this is a translation pull request from Weblate, a maintainer can append the new commit to this branch so that CI passes before merge.)"; exit 1; }
.PHONY: update-desktop-files
update-desktop-files: ${DESKTOP_BASE}/*.j2
@$(MAKE) --always-make --no-print-directory $^
# Derive POT from templates.
$(DESKTOP_POT): ${DESKTOP_BASE}/*.in
pybabel extract \
-F securedrop/babel.cfg \
--output=${DESKTOP_POT} \
--project=SecureDrop \
--msgid-bugs-address=securedrop@freedom.press \
--copyright-holder="Freedom of the Press Foundation" \
--add-location=never \
--sort-output \
$^
@sed -i -e '/^"POT-Creation-Date/d' $@
# Render desktop files from templates. msgfmt needs each
# "$LANG/LC_MESSAGES/messages.po" file in "$LANG.po".
%.j2: %.j2.in
@find ${DESKTOP_LOCALE_DIR}/* \
-maxdepth 0 \
-type d \
-exec bash -c 'locale="$$(basename {})"; cp ${DESKTOP_LOCALE_DIR}/$${locale}/LC_MESSAGES/messages.po $(DESKTOP_LOCALE_DIR)/$${locale}.po' \;
@msgfmt \
-d ${DESKTOP_LOCALE_DIR} \
--desktop \
--keyword=Name \
--template $< \
--output-file $@
@rm ${DESKTOP_LOCALE_DIR}/*.po
# Render desktop list from "i18n.json".
$(DESKTOP_I18N_CONF):
@jq --raw-output '.supported_locales[].desktop' ${I18N_CONF} > $@
## Supported locales
.PHONY: check-supported-locales
check-supported-locales: $(I18N_LIST) $(DESKTOP_I18N_CONF) ## Check that the desktop and documentation lists of supported locales are up to date.
@echo "███ Checking supported locales..."
@$(MAKE) --no-print-directory update-supported-locales
@git diff --quiet $^ || { echo "Desktop and/or documentation lists of supported locales are out of date. Please run \"make update-supported-locales\" and commit the changes."; exit 1; }
.PHONY: count-supported-locales
count-supported-locales: ## Return the number of supported locales.
@jq --raw-output '.supported_locales | length' ${I18N_CONF}
.PHONY: update-supported-locales
update-supported-locales: $(I18N_LIST) $(DESKTOP_I18N_CONF) ## Render the desktop and documentation list of supported locales.
@$(MAKE) --always-make --no-print-directory $^
# Render documentation list from "i18n.json".
${I18N_LIST}: ${I18N_CONF}
@echo '.. GENERATED BY "make update-supported-locales":' > $@
@jq --raw-output \
'.supported_locales | to_entries | map("* \(.value.name) (``\(.key)``)") | join("\n")' \
$< >> $@
.PHONY: supported-locales
supported-locales: ## List supported locales (languages).
@jq --compact-output '.supported_locales | keys' ${I18N_CONF}
## Utilities
.PHONY: translation-test
translation-test: ## Run page layout tests in all supported languages.
@echo "Running translation tests..."
@$(DEVSHELL) $(SDBIN)/translation-test $${LOCALES}
@echo
.PHONY: update-user-guides
update-user-guides: ## Regenerate docs screenshots. Set DOCS_REPO_DIR to repo checkout root.
ifndef DOCS_REPO_DIR
$(error DOCS_REPO_DIR must be set to the documentation repo checkout root.)
endif
@echo "Running page layout tests to update screenshots used in user guide..."
@$(DEVSHELL) $(SDBIN)/generate-docs-screenshots
@echo "Copying screenshots..."
cp securedrop/tests/functional/pageslayout/screenshots/en_US/*.png $${DOCS_REPO_DIR}/docs/images/manual/screenshots
@echo
.PHONY: verify-mo
verify-mo: ## Verify that all gettext machine objects (.mo) are reproducible from their catalogs (.po).
@TERM=dumb devops/scripts/verify-mo.py ${DESKTOP_LOCALE_DIR}/*
@# All good; now clean up.
@git restore "${LOCALE_DIR}/**/*.po"
###########
#
# Packaging
#
###########
SCRIPT_MESSAGE="You can now examine or commit the log at:"
SCRIPT_OUTPUT_PREFIX=$(SDROOT)/build/$(shell date +%Y%m%d)
SCRIPT_OUTPUT_EXT=log
.PHONY: build-debs
build-debs: OUT:=$(SCRIPT_OUTPUT_PREFIX)-securedrop.$(SCRIPT_OUTPUT_EXT)
build-debs: ## Build and test SecureDrop Debian packages
@echo "Building SecureDrop Debian packages..."
@export TERM=dumb
@script \
--command $(SDROOT)/builder/build-debs.sh --return \
$(OUT)
@echo
@echo "$(SCRIPT_MESSAGE)"
@echo "$(OUT)"
.PHONY: build-debs-notest
build-debs-notest: OUT:=$(SCRIPT_OUTPUT_PREFIX)-securedrop.$(SCRIPT_OUTPUT_EXT)
build-debs-notest: ## Build SecureDrop Debian packages without running tests.
@echo "Building SecureDrop Debian packages, skipping tests..."
@export TERM=dumb
@NOTEST=1 script \
--command $(SDROOT)/builder/build-debs.sh --return \
$(OUT)
@echo
@echo "$(SCRIPT_MESSAGE)"
@echo "$(OUT)"
.PHONY: build-debs-ossec
build-debs-ossec: OUT:=$(SCRIPT_OUTPUT_PREFIX)-securedrop-ossec.$(SCRIPT_OUTPUT_EXT)
build-debs-ossec: ## Build OSSEC Debian packages
@echo "Building OSSEC Debian packages"
@export TERM=dumb
@WHAT=ossec script \
--command $(SDROOT)/builder/build-debs.sh --return \
$(OUT)
@echo
@echo "$(SCRIPT_MESSAGE)"
@echo "$(OUT)"
.PHONY: build-debs-ossec-notest
build-debs-ossec-notest: OUT:=$(SCRIPT_OUTPUT_PREFIX)-securedrop-ossec.$(SCRIPT_OUTPUT_EXT)
build-debs-ossec-notest: ## Build OSSEC Debian packages without running tests
@echo "Building OSSEC Debian packages, skipping tests..."
@export TERM=dumb
@NOTEST=1 WHAT=ossec script \
--command $(SDROOT)/builder/build-debs.sh --return \
$(OUT)
@echo
@echo "$(SCRIPT_MESSAGE)"
@echo "$(OUT)"
########################
#
# Continuous integration
#
########################
.PHONY: ci-go
ci-go: ## Create, provision, test, and destroy GCE host for testing staging environment.
@echo "███ Creating GCE host for testing staging environment..."
@$(SDROOT)/devops/gce-nested/ci-go.sh
@echo
.PHONY: ci-teardown
ci-teardown: ## Destroy GCE host for testing staging environment.
@echo "███ Destroying GCE host for testing staging environment..."
@$(SDROOT)/devops/gce-nested/gce-stop.sh
@echo
.PHONY: ci-deb-tests
ci-deb-tests: ## Test SecureDrop Debian packages in CI environment.
@echo "███ Running Debian package tests in CI..."
@$(SDROOT)/devops/scripts/test-built-packages.sh
@echo
.PHONY: build-gcloud-docker
build-gcloud-docker: ## Build Docker container for Google Cloud SDK.
@echo "Building Docker container for Google Cloud SDK..."
@echo "${GCLOUD_VERSION}" > devops/gce-nested/gcloud-container.ver && \
@docker build --build-arg="GCLOUD_VERSION=${GCLOUD_VERSION}" \
-f devops/docker/Dockerfile.gcloud \
-t "quay.io/freedomofpress/gcloud-sdk:${GCLOUD_VERSION}" .
@echo
.PHONY: vagrant-package
vagrant-package: ## Package a Vagrant box of the last stable SecureDrop release.
@echo "███ Packaging Vagrant box of last stable SecureDrop release."
@devops/scripts/vagrant-package
@echo
# Explanation of the below shell command should it ever break.
# 1. Set the field separator to ": ##" and any make targets that might appear between : and ##
# 2. Use sed-like syntax to remove the make targets
# 3. Format the split fields into $$1) the target name (in blue) and $$2) the target description
# 4. Pass this file as an arg to awk
# 5. Sort it alphabetically
# 6. Format columns with colon as delimiter.
.PHONY: help
help: ## Print this message and exit.
@printf "Makefile for developing and testing SecureDrop.\n"
@printf "Subcommands:\n\n"
@awk 'BEGIN {FS = ":.*?## "} /^[0-9a-zA-Z_-]+:.*?## / {printf "\033[36m%s\033[0m : %s\n", $$1, $$2}' $(MAKEFILE_LIST) \
| sort \
| column -s ':' -t