summaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: 6b0cc0968ef9a064f60b1febad9462e767427908 (plain)
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
HUGO_VERSION := 0.53
HTMLPROOFER_VERSION := 3.10.2
GCLOUD := gcloud
GCP_PROJECT := gvisor-website

# Source Go files, example: main.go, foo/bar.go.
GEN_SOURCE = $(wildcard cmd/generate-syscall-docs/*)
APP_SOURCE = $(wildcard cmd/gvisor-website/*)
# Target Go files, example: public/main.go, public/foo/bar.go.
APP_TARGET = $(patsubst cmd/gvisor-website/%,public/%,$(APP_SOURCE))
CONTENT_SOURCE = $(wildcard content/*)

default: website
.PHONY: default

website: all-upstream app static-production
.PHONY: website

app: $(APP_TARGET)
.PHONY: app

public:
	mkdir -p public

# Load repositories.
upstream:
	mkdir -p upstream
upstream-%: upstream
	if [ -d upstream/$* ]; then (cd upstream/$* && git pull --rebase); else git clone https://gvisor.googlesource.com/$*/ upstream/$*; fi
all-upstream: upstream-gvisor upstream-community
# All repositories are listed here: force updates.
.PHONY: all-upstream upstream-%

# This target regenerates the sigs directory; this is not PHONY.
content/docs/community/sigs: upstream/community $(wildcard upstream/community/sigs/*)
	rm -rf content/docs/community/sigs && mkdir -p content/docs/community/sigs
	for file in $(shell cd upstream/community/sigs && ls -1 *.md | cut -d'.' -f1 | grep -v TEMPLATE); do      \
		title=$$(cat upstream/community/sigs/$$file.md | grep -E '^# ' | cut -d' ' -f2-);                 \
		echo -e "+++\ntitle = \"$$title\"\n+++\n" > content/docs/community/sigs/$$file.md;                  \
		cat upstream/community/sigs/$$file.md |grep -v -E '^# ' >> content/docs/community/sigs/$$file.md; \
	done

$(APP_TARGET): public $(APP_SOURCE)
	cp -a cmd/gvisor-website/$(patsubst public/%,%,$@) public/

static-production: hugo-docker-image compatibility-docs node_modules config.toml $(shell find archetypes assets content themes -type f | sed 's/ /\\ /g')
	docker run \
	  --rm \
	  -e HUGO_ENV="production" \
	  -e USER="$(shell id -u)" \
	  -e HOME="/tmp" \
	  -u="$(shell id -u):$(shell id -g)" \
	  -v $(PWD):/workspace \
	  -w /workspace \
	  gcr.io/gvisor-website/hugo:$(HUGO_VERSION) \
	  hugo
.PHONY: static-production

static-staging: hugo-docker-image compatibility-docs node_modules config.toml $(shell find archetypes assets content themes -type f | sed 's/ /\\ /g')
	docker run \
	  --rm \
	  -e HUGO_ENV="production" \
	  -e USER="$(shell id -u)" \
	  -e HOME="/tmp" \
	  -u="$(shell id -u):$(shell id -g)" \
	  -v $(PWD):/workspace \
	  -w /workspace \
	  gcr.io/gvisor-website/hugo:$(HUGO_VERSION) \
	  hugo \
	    -b "https://staging-$(shell git branch | grep \* | cut -d ' ' -f2)-dot-gvisor-website.appspot.com"
.PHONY: static-staging

node_modules: package.json package-lock.json
	# Use npm ci because npm install will update the package-lock.json.
	# See: https://github.com/npm/npm/issues/18286
	docker run \
	  --rm \
	  -e USER="$(shell id -u)" \
	  -e HOME="/tmp" \
	  -u="$(shell id -u):$(shell id -g)" \
	  -v $(PWD):/workspace \
	  -w /workspace \
	  --entrypoint 'npm' \
	  node ci

bin/generate-syscall-docs: $(GEN_SOURCE)
	mkdir -p bin/
	go build -o bin/generate-syscall-docs gvisor.dev/website/cmd/generate-syscall-docs

compatibility-docs: bin/generate-syscall-docs
	# bazel_user_root is used for caching bazel packages.
	mkdir -p bazel_user_root/
	docker run \
	  --rm \
	  -v $(PWD)/upstream/gvisor:/workspace \
	  -v $(PWD)/bazel_user_root:/bazel_user_root \
	  -w /workspace \
	  --entrypoint 'sh' \
	  l.gcr.io/google/bazel \
	  -c '\
		groupadd --gid $(shell id -g) $(shell id -gn) && \
		useradd --uid $(shell id -u) --gid $(shell id -g) -ms /bin/bash $(USER) && \
		su $(USER) -c "bazel --output_user_root=/bazel_user_root run //runsc -- help syscalls -o json"' | ./bin/generate-syscall-docs -out ./content/docs/user_guide/compatibility/
.PHONY: compatibility-docs

check: check-markdown check-html
.PHONY: check

check-markdown: node_modules $(CONTENT_SOURCE) compatibility-docs
	docker run \
	  --rm \
	  -e USER="$(shell id -u)" \
	  -e HOME="/tmp" \
	  -u="$(shell id -u):$(shell id -g)" \
	  -v $(PWD):/workspace \
	  -v /tmp:/tmp \
	  -w /workspace \
	  --entrypoint 'npm' \
	  node run lint-md
.PHONY: check-markdown

check-html: website
	docker run \
	  -v $(shell pwd)/public:/public gcr.io/gvisor-website/html-proofer:$(HTMLPROOFER_VERSION) \
	  htmlproofer --disable-external --check-html public/static
.PHONY: check-html

# Run a local content development server. Redirects will not be supported.
devserver: hugo-docker-image all-upstream compatibility-docs
	docker run \
	  --rm \
	  -e USER="$(shell id -u)" \
	  -e HOME="/tmp" \
	  -u="$(shell id -u):$(shell id -g)" \
	  -v $(PWD):/workspace \
	  -w /workspace \
	  -p 8080:8080 \
	  gcr.io/gvisor-website/hugo:$(HUGO_VERSION) \
	  hugo server \
		-FD \
		--bind 0.0.0.0 \
		--port 8080
.PHONY: server

server: website
	cd public/ && go run main.go --custom-domain localhost
.PHONY: server

# Stage the website to App Engine at a version based on the git branch name.
stage: all-upstream app static-staging
	# Disallow indexing staged content.
	printf "User-agent: *\nDisallow: /" > public/static/robots.txt
	cd public && $(GCLOUD) app deploy -v staging-$(shell git branch | grep \* | cut -d ' ' -f2) --no-promote
.PHONY: stage

# CI related Commmands
##############################################################################

# Submit a build to Cloud Build manually. Used to test cloudbuild.yaml changes.
cloud-build:
	gcloud builds submit --config cloudbuild.yaml .

# Build the hugo Docker image.
hugo-docker-image:
	docker build --build-arg HUGO_VERSION=$(HUGO_VERSION) -t gcr.io/gvisor-website/hugo:$(HUGO_VERSION) cloudbuild/hugo/
.PHONY: hugo-docker-image

# Build the html-proofer image used by Cloud Build.
htmlproofer-docker-image:
	docker build --build-arg HTMLPROOFER_VERSION=$(HTMLPROOFER_VERSION) -t gcr.io/gvisor-website/html-proofer:$(HTMLPROOFER_VERSION) cloudbuild/html-proofer/
.PHONY: htmlproofer-docker-image

clean:
ifneq ("$(wildcard bazel_user_root/)","")
	chmod -R +w bazel_user_root/
endif
	rm -rf bazel_user_root/ public/ resources/ node_modules/ upstream/ content/docs/user_guide/compatibility/linux/
.PHONY: clean