mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
f0ba860bdb
Signed-off-by: Simon Pasquier <spasquie@redhat.com>
123 lines
3.4 KiB
YAML
123 lines
3.4 KiB
YAML
---
|
|
version: 2
|
|
|
|
jobs:
|
|
test:
|
|
# Whenever the Go version is updated here, .travis.yml should also be
|
|
# updated.
|
|
docker:
|
|
- image: circleci/golang:1.10
|
|
working_directory: /go/src/github.com/prometheus/prometheus
|
|
resource_class: large
|
|
|
|
steps:
|
|
- checkout
|
|
- run: make promu
|
|
- run: make check_license style unused staticcheck build
|
|
- store_artifacts:
|
|
path: prometheus
|
|
destination: /build/prometheus
|
|
- store_artifacts:
|
|
path: promtool
|
|
destination: /build/promtool
|
|
- run: rm -v prometheus promtool
|
|
|
|
build:
|
|
machine: true
|
|
working_directory: /home/circleci/.go_workspace/src/github.com/prometheus/prometheus
|
|
|
|
steps:
|
|
- checkout
|
|
- run: make promu
|
|
- run: promu crossbuild -v
|
|
- persist_to_workspace:
|
|
root: .
|
|
paths:
|
|
- .build
|
|
- store_artifacts:
|
|
path: .build
|
|
destination: /build
|
|
|
|
docker_hub_master:
|
|
docker:
|
|
- image: circleci/golang:1.10
|
|
working_directory: /go/src/github.com/prometheus/prometheus
|
|
|
|
steps:
|
|
- checkout
|
|
- setup_remote_docker
|
|
- attach_workspace:
|
|
at: .
|
|
- run: ln -s .build/linux-amd64/prometheus prometheus
|
|
- run: ln -s .build/linux-amd64/promtool promtool
|
|
- run: make docker
|
|
- run: make docker DOCKER_REPO=quay.io/prometheus
|
|
- run: docker images
|
|
- run: docker login -u $DOCKER_LOGIN -p $DOCKER_PASSWORD
|
|
- run: docker login -u $QUAY_LOGIN -p $QUAY_PASSWORD quay.io
|
|
- run: make docker-publish
|
|
- run: make docker-publish DOCKER_REPO=quay.io/prometheus
|
|
|
|
docker_hub_release_tags:
|
|
docker:
|
|
- image: circleci/golang:1.10
|
|
working_directory: /go/src/github.com/prometheus/prometheus
|
|
|
|
steps:
|
|
- checkout
|
|
- setup_remote_docker
|
|
- run: mkdir -v -p ${HOME}/bin
|
|
- run: curl -L 'https://github.com/aktau/github-release/releases/download/v0.7.2/linux-amd64-github-release.tar.bz2' | tar xvjf - --strip-components 3 -C ${HOME}/bin
|
|
- run: echo 'export PATH=${HOME}/bin:${PATH}' >> ${BASH_ENV}
|
|
- attach_workspace:
|
|
at: .
|
|
- run: make promu
|
|
- run: promu crossbuild tarballs
|
|
- run: promu checksum .tarballs
|
|
- run: promu release .tarballs
|
|
- store_artifacts:
|
|
path: .tarballs
|
|
destination: releases
|
|
- run: ln -s .build/linux-amd64/prometheus prometheus
|
|
- run: ln -s .build/linux-amd64/promtool promtool
|
|
- run: make docker DOCKER_IMAGE_TAG=$CIRCLE_TAG
|
|
- run: make docker DOCKER_IMAGE_TAG=$CIRCLE_TAG DOCKER_REPO=quay.io/prometheus
|
|
- run: docker login -u $DOCKER_LOGIN -p $DOCKER_PASSWORD
|
|
- run: docker login -u $QUAY_LOGIN -p $QUAY_PASSWORD quay.io
|
|
- run: |
|
|
if [[ "$CIRCLE_TAG" =~ ^v[0-9]+(\.[0-9]+){2}$ ]]; then
|
|
make docker-tag-latest DOCKER_IMAGE_TAG="$CIRCLE_TAG"
|
|
make docker-tag-latest DOCKER_IMAGE_TAG="$CIRCLE_TAG" DOCKER_REPO=quay.io/prometheus
|
|
fi
|
|
- run: make docker-publish
|
|
- run: make docker-publish DOCKER_REPO=quay.io/prometheus
|
|
|
|
workflows:
|
|
version: 2
|
|
prometheus:
|
|
jobs:
|
|
- test:
|
|
filters:
|
|
tags:
|
|
only: /.*/
|
|
- build:
|
|
filters:
|
|
tags:
|
|
only: /.*/
|
|
- docker_hub_master:
|
|
requires:
|
|
- test
|
|
- build
|
|
filters:
|
|
branches:
|
|
only: master
|
|
- docker_hub_release_tags:
|
|
requires:
|
|
- test
|
|
- build
|
|
filters:
|
|
tags:
|
|
only: /^v[0-9]+(\.[0-9]+){2}(-.+|[^-.]*)$/
|
|
branches:
|
|
ignore: /.*/
|