-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
609 lines (418 loc) · 13.4 KB
/
Makefile
File metadata and controls
609 lines (418 loc) · 13.4 KB
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
# Makefile for Go project
# Detect the operating system and architecture.
include makefiles/osdetect.mk
# -----------------------------------------------------------------------------
# Variables
# -----------------------------------------------------------------------------
# "Simple expanded" variables (':=')
# PROGRAM_NAME is the name of the GIT repository.
PROGRAM_NAME := $(shell basename `git rev-parse --show-toplevel`)
MAKEFILE_PATH := $(abspath $(firstword $(MAKEFILE_LIST)))
MAKEFILE_DIRECTORY := $(shell dirname $(MAKEFILE_PATH))
TARGET_DIRECTORY := $(MAKEFILE_DIRECTORY)/target
DIST_DIRECTORY := $(MAKEFILE_DIRECTORY)/dist
BUILD_TAG := $(shell git describe --always --tags --abbrev=0 | sed 's/v//')
BUILD_ITERATION := $(shell git log $(BUILD_TAG)..HEAD --oneline | wc -l | sed 's/^ *//')
BUILD_VERSION := $(shell git describe --always --tags --abbrev=0 --dirty | sed 's/v//')
DOCKER_CONTAINER_NAME := $(PROGRAM_NAME)
DOCKER_IMAGE_NAME := senzing/$(PROGRAM_NAME)
DOCKER_BUILD_IMAGE_NAME := $(DOCKER_IMAGE_NAME)-build
DOCKER_SUT_IMAGE_NAME := $(PROGRAM_NAME)_sut
GIT_REMOTE_URL := $(shell git config --get remote.origin.url)
GIT_REPOSITORY_NAME := $(shell basename `git rev-parse --show-toplevel`)
GIT_VERSION := $(shell git describe --always --tags --long --dirty | sed -e 's/\-0//' -e 's/\-g.......//')
GO_PACKAGE_NAME := $(shell echo $(GIT_REMOTE_URL) | sed -e 's|^git@github.com:|github.com/|' -e 's|\.git$$||' -e 's|Senzing|senzing|')
PATH := $(MAKEFILE_DIRECTORY)/bin:$(PATH)
# Recursive assignment ('=')
GO_OSARCH = $(subst /, ,$@)
GO_OS = $(word 1, $(GO_OSARCH))
GO_ARCH = $(word 2, $(GO_OSARCH))
# Conditional assignment. ('?=')
# Can be overridden with "export"
# Example: "export LD_LIBRARY_PATH=/path/to/my/senzing/er/lib"
DOCKER_IMAGE_TAG ?= $(GIT_REPOSITORY_NAME):$(GIT_VERSION)
GOBIN ?= $(shell go env GOPATH)/bin
# Tricky code.
# Accept a LD_LIBRARY_PATH environment variable, default to /opt/senzing/er/lib
# Then append path to oracle SDK
LD_LIBRARY_PATH ?= /opt/senzing/er/lib
LD_LIBRARY_PATH := $(LD_LIBRARY_PATH):/opt/oracle/instantclient_23_5
# Export environment variables.
.EXPORT_ALL_VARIABLES:
# -----------------------------------------------------------------------------
# The first "make" target runs as default.
# -----------------------------------------------------------------------------
.PHONY: default
default: help
# -----------------------------------------------------------------------------
# Operating System / Architecture targets
# -----------------------------------------------------------------------------
-include makefiles/$(OSTYPE).mk
-include makefiles/$(OSTYPE)_$(OSARCH).mk
.PHONY: hello-world
hello-world: hello-world-osarch-specific
# -----------------------------------------------------------------------------
# Dependency management
# -----------------------------------------------------------------------------
.PHONY: dependencies-for-development
dependencies-for-development: dependencies-for-development-osarch-specific
@go install github.com/bombsimon/wsl/v5/cmd/wsl@latest
@go install github.com/daixiang0/gci@latest
@go install github.com/gotesttools/gotestfmt/v2/cmd/gotestfmt@latest
@go install github.com/vladopajic/go-test-coverage/v2@latest
@go install golang.org/x/tools/cmd/godoc@latest
@go install golang.org/x/vuln/cmd/govulncheck@latest
@go install mvdan.cc/gofumpt@latest
@sudo npm install -g cspell@latest
.PHONY: dependencies
dependencies:
@go get -u ./...
@go get -t -u ./...
@go mod tidy
# -----------------------------------------------------------------------------
# Setup
# -----------------------------------------------------------------------------
.PHONY: setup
setup: setup-osarch-specific
# -----------------------------------------------------------------------------
# Lint
# -----------------------------------------------------------------------------
.PHONY: lint
lint: golangci-lint govulncheck cspell
# -----------------------------------------------------------------------------
# Build
# -----------------------------------------------------------------------------
PLATFORMS := darwin/amd64 darwin/arm64 linux/amd64 linux/arm64 windows/amd64 windows/arm64
$(PLATFORMS):
$(info Building $(TARGET_DIRECTORY)/$(GO_OS)-$(GO_ARCH)/$(PROGRAM_NAME))
@GOOS=$(GO_OS) GOARCH=$(GO_ARCH) go build -o $(TARGET_DIRECTORY)/$(GO_OS)-$(GO_ARCH)/$(PROGRAM_NAME)
PLATFORMS_WITH_LIBSQLITE3 := linux/amd64/libsqlite3 linux/arm64/libsqlite3
$(PLATFORMS_WITH_LIBSQLITE3):
$(info Building $(TARGET_DIRECTORY)/$(GO_OS)-$(GO_ARCH)/$(PROGRAM_NAME) libsqlite3)
@GOOS=$(GO_OS) GOARCH=$(GO_ARCH) go build -tags "libsqlite3 linux" -o $(TARGET_DIRECTORY)/$(GO_OS)-$(GO_ARCH)/$(PROGRAM_NAME)
.PHONY: build
build: build-osarch-specific
.PHONY: build-with-libsqlite3
build-with-libsqlite3: build-with-libsqlite3-osarch-specific
.PHONY: docker-build
docker-build: docker-build-osarch-specific
# -----------------------------------------------------------------------------
# Run
# -----------------------------------------------------------------------------
.PHONY: docker-run
docker-run:
@docker run \
--interactive \
--rm \
--tty \
--name $(DOCKER_CONTAINER_NAME) \
$(DOCKER_IMAGE_NAME)
.PHONY: run
run: run-osarch-specific
# -----------------------------------------------------------------------------
# Test
# -----------------------------------------------------------------------------
.PHONY: test
test: test-osarch-specific
.PHONY: test-mysql
test-mysql: test-mysql-osarch-specific
.PHONY: test-mssql
test-mssql: test-mssql-osarch-specific
.PHONY: test-oracle
test-oracle: test-oracle-osarch-specific
.PHONY: test-oracle-sys
test-oracle-sys: test-oracle-sys-osarch-specific
.PHONY: test-postgresql
test-postgresql: test-postgresql-osarch-specific
.PHONY: docker-test
docker-test:
@docker-compose -f docker-compose.test.yaml up
# -----------------------------------------------------------------------------
# Coverage
# -----------------------------------------------------------------------------
.PHONY: coverage
coverage: coverage-osarch-specific
.PHONY: check-coverage
check-coverage: export SENZING_LOG_LEVEL=TRACE
check-coverage:
@go test ./... -coverprofile=./cover.out -covermode=atomic -coverpkg=./...
@${GOBIN}/go-test-coverage --config=.github/coverage/testcoverage.yaml
# -----------------------------------------------------------------------------
# Documentation
# -----------------------------------------------------------------------------
.PHONY: documentation
documentation: documentation-osarch-specific
# -----------------------------------------------------------------------------
# Package
# -----------------------------------------------------------------------------
.PHONY: package
package: clean package-osarch-specific
.PHONY: docker-build-package
docker-build-package:
@docker build \
--build-arg BUILD_ITERATION=$(BUILD_ITERATION) \
--build-arg BUILD_VERSION=$(BUILD_VERSION) \
--build-arg GO_PACKAGE_NAME=$(GO_PACKAGE_NAME) \
--build-arg PROGRAM_NAME=$(PROGRAM_NAME) \
--no-cache \
--file package.Dockerfile \
--tag $(DOCKER_BUILD_IMAGE_NAME) \
.
# -----------------------------------------------------------------------------
# Clean
# -----------------------------------------------------------------------------
.PHONY: clean
clean: clean-osarch-specific
@go clean -cache
@go clean -testcache
@docker-compose -f docker-compose.test.yaml down || true
# -----------------------------------------------------------------------------
# Utility targets
# -----------------------------------------------------------------------------
.PHONY: docker-rmi-for-build
docker-rmi-for-build:
-docker rmi --force \
$(DOCKER_IMAGE_NAME):$(GIT_VERSION) \
$(DOCKER_IMAGE_NAME)
.PHONY: help
help:
$(info Build $(PROGRAM_NAME) version $(BUILD_VERSION)-$(BUILD_ITERATION))
$(info Makefile targets:)
@$(MAKE) -pRrq -f $(firstword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | egrep -v -e '^[^[:alnum:]]' -e '^$@$$' | xargs
.PHONY: print-make-variables
print-make-variables:
@$(foreach V,$(sort $(.VARIABLES)), \
$(if $(filter-out environment% default automatic, \
$(origin $V)),$(info $V=$($V) ($(value $V)))))
.PHONY: update-pkg-cache
update-pkg-cache:
@GOPROXY=https://proxy.golang.org GO111MODULE=on \
go get $(GO_PACKAGE_NAME)@$(BUILD_TAG)
# -----------------------------------------------------------------------------
# Specific programs
# -----------------------------------------------------------------------------
.PHONY: bearer
bearer:
@bearer scan --config-file .github/linters/bearer.yml .
.PHONY: cspell
cspell:
@cspell lint --dot .
.PHONY: exhaustruct
exhaustruct:
exhaustruct ./...
.PHONY: gofumpt
gofumpt:
gofumpt -d ./**/*.go
.PHONY: golangci-lint
golangci-lint:
@${GOBIN}/golangci-lint run --config=.github/linters/.golangci.yaml
.PHONY: govulncheck
govulncheck:
@${GOBIN}/govulncheck ./...
.PHONY: run-init-database
run-init-database: build
@target/linux/init-database
.PHONY: run-init-database-trace
run-init-database-trace: build
@target/linux/init-database --log-level TRACE --engine-log-level 1
# -----------------------------------------------------------------------------
# Fixers
# -----------------------------------------------------------------------------
.PHONY: fix
fix: fix-asciicheck
fix: fix-bidichk
fix: fix-canonicalheader
# fix: fix-copyloopvar
fix: fix-cyclop
fix: fix-dupword
# fix: fix-durationcheck
# fix: fix-err113
fix: fix-errchkjson
fix: fix-errname
fix: fix-errorlint
# fix: fix-exhaustive
# fix: fix-exhaustruct
# fix: fix-exptostd
# fix: fix-fatcontext
# fix: fix-ginkgolinter
# fix: fix-gocheckcompilerdirectives
# fix: fix-gochecknoglobals
# fix: fix-godot
fix: fix-gofumpt
# fix: fix-grouper
# fix: fix-ifacecheck
# fix: fix-interfacebloat
fix: fix-inamedparam
# fix: fix-ireturn
fix: fix-loggercheck
# fix: fix-maintidx
# fix: fix-mirror
# fix: fix-mnd
fix: fix-nakedret
# fix: fix-nilerr
fix: fix-nilnesserr
fix: fix-nilnil
fix: fix-paralleltest
fix: fix-perfsprint
# fix: fix-predeclared
# fix: fix-protogetter
# fix: fix-rowserrcheck
fix: fix-tagalign
fix: fix-tagliatelle
# fix: fix-testableexamples
fix: fix-testifylint
# fix: fix-testpackage
# fix: fix-thelper
# fix: fix-usestdlibvars
fix: fix-usetesting
# fix: fix-whitespace
fix: fix-wrapcheck
fix: fix-wsl
$(info fixes complete)
.PHONY: fix-asciicheck
fix-asciicheck:
@asciicheck --fix ./...
.PHONY: fix-bidichk
fix-bidichk:
@bidichk --fix ./...
.PHONY: fix-canonicalheader
fix-canonicalheader:
@canonicalheader --fix ./...
.PHONY: fix-copyloopvar
fix-copyloopvar:
@copyloopvar --fix ./...
.PHONY: fix-cyclop
fix-cyclop:
@cyclop --fix ./...
.PHONY: fix-dupword
fix-dupword:
@dupword --fix ./...
.PHONY: fix-durationcheck
fix-durationcheck:
@durationcheck --fix ./...
.PHONY: fix-err113
fix-err113:
@err113 --fix ./...
.PHONY: fix-errchkjson
fix-errchkjson:
@errchkjson --fix ./...
.PHONY: fix-errname
fix-errname:
@errname --fix ./...
.PHONY: fix-errorlint
fix-errorlint:
@go-errorlint --fix ./...
.PHONY: fix-exhaustive
fix-exhaustive:
@go-exhaustive --fix ./...
.PHONY: fix-exhaustruct
fix-exhaustruct:
@go-exhaustruct --fix ./...
.PHONY: fix-exptostd
fix-exptostd:
@go-exptostd --fix ./...
.PHONY: fix-fatcontext
fix-fatcontext:
@go-fatcontext -fix ./...
.PHONY: fix-ginkgolinter
fix-ginkgolinter:
@go-ginkgolinter --fix ./...
.PHONY: fix-gocheckcompilerdirectives
fix-gocheckcompilerdirectives:
@go-gocheckcompilerdirectives --fix ./...
.PHONY: fix-gochecknoglobals
fix-gochecknoglobals:
@go-gochecknoglobals --fix ./...
.PHONY: fix-godot
fix-godot:
@go-godot --fix ./...
.PHONY: fix-gofumpt
fix-gofumpt:
@gofumpt -w ./**/*.go
.PHONY: fix-grouper
fix-grouper:
@grouper --fix ./...
.PHONY: fix-ifacecheck
fix-ifacecheck:
@ifacecheck --fix ./...
.PHONY: fix-interfacebloat
fix-interfacebloat:
@interfacebloat --fix ./...
.PHONY: fix-inamedparam
fix-inamedparam:
@inamedparam --fix ./...
.PHONY: fix-ireturn
fix-ireturn:
@ireturn --fix ./...
.PHONY: fix-loggercheck
fix-loggercheck:
@loggercheck --fix ./...
.PHONY: fix-maintidx
fix-maintidx:
@maintidx --fix ./...
.PHONY: fix-mirror
fix-mirror:
@mirror --fix ./...
.PHONY: fix-mnd
fix-mnd:
@mnd --fix ./...
.PHONY: fix-nakedret
fix-nakedret:
@nakedret --fix ./...
.PHONY: fix-nilerr
fix-nilerr:
@nilerr --fix ./...
.PHONY: fix-nilnesserr
fix-nilnesserr:
@nilnesserr --fix ./...
.PHONY: fix-nilnil
fix-nilnil:
@nilnil --fix ./...
.PHONY: fix-paralleltest
fix-paralleltest:
@paralleltest --fix ./...
.PHONY: fix-perfsprint
fix-perfsprint:
@perfsprint --fix ./...
.PHONY: fix-predeclared
fix-predeclared:
@predeclared --fix ./...
.PHONY: fix-protogetter
fix-protogetter:
@protogetter --fix ./...
.PHONY: fix-rowserrcheck
fix-rowserrcheck:
@rowserrcheck --fix ./...
.PHONY: fix-tagalign
fix-tagalign:
@tagalign --fix ./...
.PHONY: fix-tagliatelle
fix-tagliatelle:
@tagliatelle --fix ./...
.PHONY: fix-testableexamples
fix-testableexamples:
@testableexamples --fix ./...
.PHONY: fix-testifylint
fix-testifylint:
@testifylint --fix ./...
.PHONY: fix-testpackage
fix-testpackage:
@testpackage --fix ./...
.PHONY: fix-thelper
fix-thelper:
@thelper --fix ./...
.PHONY: fix-usestdlibvars
fix-usestdlibvars:
@usestdlibvars --fix ./...
.PHONY: fix-usetesting
fix-usetesting:
@usetesting --fix ./...
.PHONY: fix-whitespace
fix-whitespace:
@whitespace --fix ./...
.PHONY: fix-wrapcheck
fix-wrapcheck:
@wrapcheck --fix ./...
.PHONY: fix-wsl
fix-wsl:
@wsl --fix ./...