mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Split Go and React Tests (#8897)
* Added go-ci and react-ci Co-authored-by: Julien Pivotto <roidelapluie@inuits.eu> Signed-off-by: Levi Harrison <git@leviharrison.dev>
This commit is contained in:
parent
040ef175eb
commit
44e2834960
|
@ -17,21 +17,17 @@ executors:
|
||||||
- image: circleci/golang:1.15-node
|
- image: circleci/golang:1.15-node
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test_go:
|
||||||
executor: golang
|
executor: golang
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- prometheus/setup_environment
|
- prometheus/setup_environment
|
||||||
- go/load-cache:
|
- go/load-cache:
|
||||||
key: v1
|
key: v1
|
||||||
- restore_cache:
|
|
||||||
keys:
|
|
||||||
- v3-npm-deps-{{ checksum "web/ui/react-app/yarn.lock" }}
|
|
||||||
- v3-npm-deps-
|
|
||||||
- run:
|
- run:
|
||||||
command: sudo apt-get install -y yamllint
|
command: sudo apt-get install -y yamllint
|
||||||
- run:
|
- run:
|
||||||
command: make
|
command: make GO_ONLY=1
|
||||||
environment:
|
environment:
|
||||||
# Run garbage collection more aggressively to avoid getting OOMed during the lint phase.
|
# Run garbage collection more aggressively to avoid getting OOMed during the lint phase.
|
||||||
GOGC: "20"
|
GOGC: "20"
|
||||||
|
@ -50,12 +46,24 @@ jobs:
|
||||||
file: promtool
|
file: promtool
|
||||||
- go/save-cache:
|
- go/save-cache:
|
||||||
key: v1
|
key: v1
|
||||||
|
- store_test_results:
|
||||||
|
path: test-results
|
||||||
|
|
||||||
|
test_react:
|
||||||
|
executor: golang
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- restore_cache:
|
||||||
|
keys:
|
||||||
|
- v3-npm-deps-{{ checksum "web/ui/react-app/yarn.lock" }}
|
||||||
|
- v3-npm-deps-
|
||||||
|
- run:
|
||||||
|
command: make react-app-test
|
||||||
- save_cache:
|
- save_cache:
|
||||||
key: v3-npm-deps-{{ checksum "web/ui/react-app/yarn.lock" }}
|
key: v3-npm-deps-{{ checksum "web/ui/react-app/yarn.lock" }}
|
||||||
paths:
|
paths:
|
||||||
- /home/circleci/.cache/yarn
|
- /home/circleci/.cache/yarn
|
||||||
- store_test_results:
|
|
||||||
path: test-results
|
|
||||||
|
|
||||||
test_windows:
|
test_windows:
|
||||||
executor:
|
executor:
|
||||||
|
@ -121,7 +129,11 @@ workflows:
|
||||||
version: 2
|
version: 2
|
||||||
prometheus:
|
prometheus:
|
||||||
jobs:
|
jobs:
|
||||||
- test:
|
- test_go:
|
||||||
|
filters:
|
||||||
|
tags:
|
||||||
|
only: /.*/
|
||||||
|
- test_react:
|
||||||
filters:
|
filters:
|
||||||
tags:
|
tags:
|
||||||
only: /.*/
|
only: /.*/
|
||||||
|
@ -146,7 +158,8 @@ workflows:
|
||||||
- prometheus/publish_main:
|
- prometheus/publish_main:
|
||||||
context: org-context
|
context: org-context
|
||||||
requires:
|
requires:
|
||||||
- test
|
- test_go
|
||||||
|
- test_react
|
||||||
- build
|
- build
|
||||||
filters:
|
filters:
|
||||||
branches:
|
branches:
|
||||||
|
@ -155,7 +168,8 @@ workflows:
|
||||||
- prometheus/publish_release:
|
- prometheus/publish_release:
|
||||||
context: org-context
|
context: org-context
|
||||||
requires:
|
requires:
|
||||||
- test
|
- test_go
|
||||||
|
- test_react
|
||||||
- build
|
- build
|
||||||
filters:
|
filters:
|
||||||
tags:
|
tags:
|
||||||
|
|
7
Makefile
7
Makefile
|
@ -64,7 +64,14 @@ react-app-test: | $(REACT_APP_NODE_MODULES_PATH) react-app-lint
|
||||||
cd $(REACT_APP_PATH) && yarn test --no-watch --coverage
|
cd $(REACT_APP_PATH) && yarn test --no-watch --coverage
|
||||||
|
|
||||||
.PHONY: test
|
.PHONY: test
|
||||||
|
# If we only want to only test go code we have to change the test target
|
||||||
|
# which is called by all.
|
||||||
|
ifeq ($(GO_ONLY),1)
|
||||||
|
test: common-test
|
||||||
|
else
|
||||||
test: common-test react-app-test
|
test: common-test react-app-test
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
.PHONY: npm_licenses
|
.PHONY: npm_licenses
|
||||||
npm_licenses: $(REACT_APP_NODE_MODULES_PATH)
|
npm_licenses: $(REACT_APP_NODE_MODULES_PATH)
|
||||||
|
|
Loading…
Reference in a new issue