mirror of
https://github.com/prometheus/alertmanager
synced 2024-12-27 08:32:15 +00:00
e4e053b18e
This patch makes the Alertmanager UI (/status & /silences) use the api/v2 endpoint. In addition it adds logic to generate the elm side data model based on the OpenAPI specification. Signed-off-by: Max Leonard Inden <IndenML@gmail.com>
20 lines
302 B
YAML
20 lines
302 B
YAML
sudo: false
|
|
language: go
|
|
|
|
services:
|
|
- docker
|
|
|
|
# Whenever the Go version is updated here, .circleci/config.yml and .promu.yml
|
|
# should also be updated.
|
|
go:
|
|
- 1.11.x
|
|
|
|
script:
|
|
# test front-end
|
|
- make clean
|
|
- cd ui/app/ && make && cd ../..
|
|
- make assets apiv2
|
|
- git diff --exit-code
|
|
# test back-end
|
|
- make
|