Merge pull request #373 from prometheus/repo_sync

Synchronize common files from prometheus/prometheus
This commit is contained in:
Matthias Rampke 2021-04-01 08:31:59 +02:00 committed by GitHub
commit ce538cbae2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,54 +1,48 @@
---
version: 2.1 version: 2.1
orbs: orbs:
prometheus: prometheus/prometheus@0.10.0 prometheus: prometheus/prometheus@0.11.0
executors: executors:
# Whenever the Go version is updated here, .promu.yml should also be updated. # Whenever the Go version is updated here, .promu.yml should also be updated.
golang: golang:
docker: docker:
- image: circleci/golang:1.16 - image: circleci/golang:1.16
jobs: jobs:
test: test:
executor: golang executor: golang
steps: steps:
- prometheus/setup_environment - prometheus/setup_environment
- run: make - run: make
- run: git diff --exit-code - run: git diff --exit-code
- prometheus/store_artifact: - prometheus/store_artifact:
file: statsd_exporter file: statsd_exporter
workflows: workflows:
version: 2 version: 2
statsd_exporter: statsd_exporter:
jobs: jobs:
- test: - test:
filters: filters:
tags: tags:
only: /.*/ only: /.*/
- prometheus/build: - prometheus/build:
name: build name: build
filters: filters:
tags: tags:
only: /.*/ only: /.*/
- prometheus/publish_master: - prometheus/publish_master:
context: org-context context: org-context
requires: requires:
- test - test
- build - build
filters: filters:
branches: branches:
only: master only: master
- prometheus/publish_release: - prometheus/publish_release:
context: org-context context: org-context
requires: requires:
- test - test
- build - build
filters: filters:
tags: tags:
only: /^v[0-9]+(\.[0-9]+){2}(-.+|[^-.]*)$/ only: /^v[0-9]+(\.[0-9]+){2}(-.+|[^-.]*)$/
branches: branches:
ignore: /.*/ ignore: /.*/