-
Notifications
You must be signed in to change notification settings - Fork 19
/
circle.yml
31 lines (28 loc) · 1.01 KB
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
general:
branches:
ignore:
- /^ultron\/.*/ # Ignore ultron/* branches
machine:
node:
version: 6.13.1
services:
- docker
- redis
environment:
CXX: g++-4.9
REMOTE_MANAGEMENT_DISABLE: 1
dependencies:
override:
- rm -rf node_modules
- yarn install --frozen-lockfile
post:
- cd node_modules/@zenko/cloudserver && yarn run mem_backend: {background: true}
test:
override:
- docker run -e AUTO_CREATE_TOPICS=true -d --net=host --name kafka spotify/kafka
- yarn run --silent lint_md -- --max-warnings 0
- yarn run --silent lint -- --max-warnings 0
- npm test
- CI=true npm start & bash tests/utils/wait_for_local_port.bash 8900 40 && yarn run ft_test:api:routes
- CI=true BACKBEAT_CONFIG_FILE=tests/config.json npm start & bash tests/utils/wait_for_local_port.bash 8900 40 && BACKBEAT_CONFIG_FILE=tests/config.json yarn run ft_test:api:retry
- CI=true yarn run ft_test