forked from pulumi/registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
66 lines (51 loc) · 1.11 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
.PHONY: clean
clean:
./scripts/clean.sh
.PHONY: ensure
ensure:
./scripts/ensure.sh
.PHONY: lint
lint:
./scripts/lint.sh
.PHONY: lint-fix
lint-fix:
./scripts/lint.sh --fix
.PHONY: test
test:
./scripts/test.sh
.PHONY: build
build:
$(MAKE) build-assets
./scripts/build.sh
.PHONY: serve
serve:
./scripts/serve.sh
.PHONY: ci-pull-request
ci-pull-request: ensure
./scripts/ci/pull-request.sh
.PHONY: ci-pull-request-closed
ci-pull-request-closed:
./scripts/ci/pull-request-closed.sh
.PHONY: ci-scheduled
ci-scheduled:
./scripts/ci/scheduled.sh
.PHONY: ci_push
ci_push::
$(MAKE) ensure
./scripts/ci/push.sh
.PHONY: serve-assets
serve-assets:
yarn --cwd ./themes/default/theme run start
.PHONY: serve-all
serve-all:
./node_modules/.bin/concurrently --kill-others -r "./scripts/serve.sh" "yarn --cwd ./themes/default/theme run start"
.PHONY: build-assets
build-assets:
yarn --cwd ./themes/default/theme run build
.PHONY: ci_bucket_cleanup
ci_bucket_cleanup:
./scripts/ci/bucket-cleanup.sh
.PHONY: check_links
check_links:
$(MAKE) ensure
./scripts/link-checker/check-links.sh "https://www.pulumi.com/registry"