mirror of
https://github.com/prometheus/docs.git
synced 2026-02-07 03:44:55 +01:00
39 lines
1.6 KiB
Makefile
39 lines
1.6 KiB
Makefile
DOWNLOADS := prometheus alertmanager blackbox_exporter consul_exporter graphite_exporter haproxy_exporter memcached_exporter mysqld_exporter node_exporter pushgateway statsd_exporter
|
|
|
|
clean:
|
|
rm -rf output downloads
|
|
|
|
compile: clean downloads
|
|
bundle exec nanoc
|
|
|
|
deploy: github_pages_export github_pages_push
|
|
|
|
downloads: $(DOWNLOADS:%=downloads/%/repo.json) $(DOWNLOADS:%=downloads/%/releases.json)
|
|
|
|
downloads/%/repo.json:
|
|
@mkdir -p $(dir $@)
|
|
@echo "curl -sf -H 'Accept: application/vnd.github.v3+json' <GITHUB_AUTHENTICATION> https://api.github.com/repos/prometheus/$* > $@"
|
|
@curl -sf -H 'Accept: application/vnd.github.v3+json' $(GITHUB_AUTHENTICATION) https://api.github.com/repos/prometheus/$* > $@
|
|
|
|
downloads/%/releases.json:
|
|
@mkdir -p $(dir $@)
|
|
@echo "curl -sf -H 'Accept: application/vnd.github.v3+json' <GITHUB_AUTHENTICATION> https://api.github.com/repos/prometheus/$*/releases > $@"
|
|
@curl -sf -H 'Accept: application/vnd.github.v3+json' $(GITHUB_AUTHENTICATION) https://api.github.com/repos/prometheus/$*/releases > $@
|
|
|
|
github_pages_export: compile
|
|
cd output && \
|
|
mkdir -p .github && \
|
|
echo "This repository is auto-generated. You have to open pull requests against https://github.com/prometheus/docs instead." > .github/PULL_REQUEST_TEMPLATE.md && \
|
|
echo prometheus.io > CNAME && \
|
|
git init && \
|
|
git config user.name "Travis CI" && \
|
|
git config user.email "travis@prometheus.io" && \
|
|
git add . && \
|
|
git commit --message="Static site builder output"
|
|
|
|
github_pages_push:
|
|
cd output && \
|
|
git push -f git@github.com:prometheus/prometheus.github.io master
|
|
|
|
.PHONY: compile deploy github_pages_export github_pages_push
|