circleci: store build outputs as artifacts (#1572)
Signed-off-by: Simon Pasquier <spasquie@redhat.com>
This commit is contained in:
parent
30aae38c95
commit
e6c5c03c9e
|
@ -12,6 +12,12 @@ jobs:
|
|||
- setup_remote_docker
|
||||
- run: make promu
|
||||
- run: make
|
||||
- store_artifacts:
|
||||
path: alertmanager
|
||||
destination: /build/alertmanager
|
||||
- store_artifacts:
|
||||
path: amtool
|
||||
destination: /build/amtool
|
||||
- run: rm -v alertmanager amtool
|
||||
|
||||
build:
|
||||
|
@ -26,6 +32,9 @@ jobs:
|
|||
root: .
|
||||
paths:
|
||||
- .build
|
||||
- store_artifacts:
|
||||
path: .build
|
||||
destination: /build
|
||||
|
||||
docker_hub_master:
|
||||
docker:
|
||||
|
|
Loading…
Reference in New Issue