forked from vmware/packer-examples-for-vsphere
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (19 loc) · 657 Bytes
/
Makefile
File metadata and controls
26 lines (19 loc) · 657 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
# © Broadcom. All Rights Reserved.
# The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.
# SPDX-License-Identifier: BSD-2-Clause
.PHONY: docs-install docs-serve docs-serve-live docs-build docs-uninstall
docs-install:
pip install mkdocs-material
pip install --requirement .github/workflows/requirements.txt
docs-serve:
mkdocs serve
docs-serve-live:
mkdocs serve --livereload -w ./
docs-build:
mkdocs build
docs-uninstall:
pip uninstall mkdocs-material mkdocs -y
pip uninstall -r .github/workflows/requirements.txt -y
.PHONY: update-gitlab-ci
update-gitlab-ci:
gomplate -c build-ci.yaml -f build-ci.tmpl -o .gitlab-ci.yml