-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (30 loc) · 721 Bytes
/
Makefile
File metadata and controls
43 lines (30 loc) · 721 Bytes
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
.phony: test lint autocorrect install install-ci install-gems install-jars clean notice build-docker-ci list-gems list-jars
test:
script/rspec $(file)
lint:
rubocop
autocorrect:
rubocop --autocorrect
install:
script/environment
make install-gems
make install-jars
install-ci:
make install-gems
make install-jars
install-gems:
script/bundle install
install-jars:
script/bundle exec script/vendor_jars
clean:
rm -rf Jars.lock vendor/jars
notice:
script/licenses/generate_notice.rb
build-docker-ci:
docker build -t crawler-ci .
build-docker-wolfi:
docker build -t crawler-ci-wolfi -f Dockerfile.wolfi .
list-gems:
script/bundle exec gem dependency
list-jars:
script/bundle exec lock_jars --tree