circleci: store build outputs as artifacts (#4685)
Signed-off-by: Simon Pasquier <spasquie@redhat.com>
This commit is contained in:
parent
f2d43af820
commit
f0ba860bdb
|
@ -14,7 +14,13 @@ jobs:
|
||||||
- checkout
|
- checkout
|
||||||
- run: make promu
|
- run: make promu
|
||||||
- run: make check_license style unused staticcheck build
|
- run: make check_license style unused staticcheck build
|
||||||
- run: rm -v prometheus
|
- store_artifacts:
|
||||||
|
path: prometheus
|
||||||
|
destination: /build/prometheus
|
||||||
|
- store_artifacts:
|
||||||
|
path: promtool
|
||||||
|
destination: /build/promtool
|
||||||
|
- run: rm -v prometheus promtool
|
||||||
|
|
||||||
build:
|
build:
|
||||||
machine: true
|
machine: true
|
||||||
|
@ -28,6 +34,9 @@ jobs:
|
||||||
root: .
|
root: .
|
||||||
paths:
|
paths:
|
||||||
- .build
|
- .build
|
||||||
|
- store_artifacts:
|
||||||
|
path: .build
|
||||||
|
destination: /build
|
||||||
|
|
||||||
docker_hub_master:
|
docker_hub_master:
|
||||||
docker:
|
docker:
|
||||||
|
|
Loading…
Reference in New Issue