mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
Add circleci yaml for Dockerfile test build
This commit is contained in:
parent
1e61b5e0cf
commit
016e00441f
2
Makefile
2
Makefile
|
@ -30,7 +30,7 @@ build: dependencies $(GOPATH)
|
|||
$(GO) build -o prometheus $(BUILDFLAGS) github.com/prometheus/prometheus/cmd/prometheus
|
||||
$(GO) build -o promtool $(BUILDFLAGS) github.com/prometheus/prometheus/cmd/promtool
|
||||
|
||||
docker: build
|
||||
docker:
|
||||
docker build -t prometheus:$(REV) .
|
||||
|
||||
tarball: $(ARCHIVE)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Prometheus [![Build Status](https://travis-ci.org/prometheus/prometheus.svg)](https://travis-ci.org/prometheus/prometheus)
|
||||
# Prometheus [![Build Status](https://travis-ci.org/prometheus/prometheus.svg)](https://travis-ci.org/prometheus/prometheus) [![Circle CI](https://circleci.com/gh/prometheus/prometheus/tree/master.svg?style=svg)](https://circleci.com/gh/prometheus/prometheus/tree/master)
|
||||
|
||||
Prometheus is a systems and service monitoring system. It collects metrics
|
||||
from configured targets at given intervals, evaluates rule expressions,
|
||||
|
|
11
circle.yml
Normal file
11
circle.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
machine:
|
||||
services:
|
||||
- docker
|
||||
|
||||
dependencies:
|
||||
override:
|
||||
- make docker
|
||||
|
||||
test:
|
||||
override:
|
||||
- /bin/true
|
Loading…
Reference in a new issue