2018-04-21 05:35:53 +00:00
|
|
|
---
|
2018-10-09 12:24:36 +00:00
|
|
|
version: 2.1
|
2018-04-21 05:35:53 +00:00
|
|
|
|
2018-10-16 07:41:45 +00:00
|
|
|
executors:
|
|
|
|
# Whenever the Go version is updated here, .travis.yml and .promu.yml
|
|
|
|
# should also be updated.
|
|
|
|
golang:
|
2018-04-21 05:35:53 +00:00
|
|
|
docker:
|
2018-10-16 07:41:45 +00:00
|
|
|
- image: circleci/golang:1.11
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
executor: golang
|
2018-04-21 05:35:53 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: make promu
|
2018-12-20 13:40:34 +00:00
|
|
|
- run: make check_license style unused staticcheck build check_assets
|
2019-01-15 14:32:05 +00:00
|
|
|
- run:
|
|
|
|
command: |
|
|
|
|
curl -s -L https://github.com/protocolbuffers/protobuf/releases/download/v3.5.1/protoc-3.5.1-linux-x86_64.zip > /tmp/protoc.zip
|
|
|
|
unzip -d /tmp /tmp/protoc.zip
|
|
|
|
chmod +x /tmp/bin/protoc
|
|
|
|
echo 'export PATH=/tmp/bin:$PATH' >> $BASH_ENV
|
|
|
|
source $BASH_ENV
|
|
|
|
make proto
|
2018-10-23 10:55:53 +00:00
|
|
|
- run: git diff --exit-code
|
2018-10-02 08:21:47 +00:00
|
|
|
- store_artifacts:
|
|
|
|
path: prometheus
|
|
|
|
destination: /build/prometheus
|
|
|
|
- store_artifacts:
|
|
|
|
path: promtool
|
|
|
|
destination: /build/promtool
|
|
|
|
- run: rm -v prometheus promtool
|
2018-04-21 05:35:53 +00:00
|
|
|
|
|
|
|
build:
|
|
|
|
machine: true
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: make promu
|
|
|
|
- run: promu crossbuild -v
|
|
|
|
- persist_to_workspace:
|
|
|
|
root: .
|
|
|
|
paths:
|
|
|
|
- .build
|
2018-10-02 08:21:47 +00:00
|
|
|
- store_artifacts:
|
|
|
|
path: .build
|
|
|
|
destination: /build
|
2018-04-21 05:35:53 +00:00
|
|
|
|
|
|
|
docker_hub_master:
|
2018-10-16 07:41:45 +00:00
|
|
|
executor: golang
|
2018-04-21 05:35:53 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- setup_remote_docker
|
|
|
|
- attach_workspace:
|
|
|
|
at: .
|
|
|
|
- run: ln -s .build/linux-amd64/prometheus prometheus
|
2018-05-11 12:13:43 +00:00
|
|
|
- run: ln -s .build/linux-amd64/promtool promtool
|
2018-07-04 09:27:10 +00:00
|
|
|
- run: make docker
|
|
|
|
- run: make docker DOCKER_REPO=quay.io/prometheus
|
2018-04-21 05:35:53 +00:00
|
|
|
- run: docker images
|
|
|
|
- run: docker login -u $DOCKER_LOGIN -p $DOCKER_PASSWORD
|
|
|
|
- run: docker login -u $QUAY_LOGIN -p $QUAY_PASSWORD quay.io
|
2018-07-04 09:27:10 +00:00
|
|
|
- run: make docker-publish
|
|
|
|
- run: make docker-publish DOCKER_REPO=quay.io/prometheus
|
2018-04-21 05:35:53 +00:00
|
|
|
|
|
|
|
docker_hub_release_tags:
|
2018-10-16 07:41:45 +00:00
|
|
|
executor: golang
|
2018-04-21 05:35:53 +00:00
|
|
|
|
|
|
|
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}
|
2018-05-22 16:53:36 +00:00
|
|
|
- attach_workspace:
|
|
|
|
at: .
|
2018-04-21 05:35:53 +00:00
|
|
|
- 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
|
2018-05-11 12:13:43 +00:00
|
|
|
- run: ln -s .build/linux-amd64/promtool promtool
|
2018-07-04 09:27:10 +00:00
|
|
|
- run: make docker DOCKER_IMAGE_TAG=$CIRCLE_TAG
|
|
|
|
- run: make docker DOCKER_IMAGE_TAG=$CIRCLE_TAG DOCKER_REPO=quay.io/prometheus
|
2018-04-21 05:35:53 +00:00
|
|
|
- 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
|
2018-07-04 09:27:10 +00:00
|
|
|
make docker-tag-latest DOCKER_IMAGE_TAG="$CIRCLE_TAG"
|
|
|
|
make docker-tag-latest DOCKER_IMAGE_TAG="$CIRCLE_TAG" DOCKER_REPO=quay.io/prometheus
|
2018-04-21 05:35:53 +00:00
|
|
|
fi
|
2018-07-04 09:27:10 +00:00
|
|
|
- run: make docker-publish
|
|
|
|
- run: make docker-publish DOCKER_REPO=quay.io/prometheus
|
2018-04-21 05:35:53 +00:00
|
|
|
|
|
|
|
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: /.*/
|