forked from dash-project/dash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
31 lines (28 loc) · 849 Bytes
/
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:
- /^doc-.*$/ # ignore doc branches
machine:
pre:
- curl -sSL https://s3.amazonaws.com/circle-downloads/install-circleci-docker.sh | bash -s -- 1.10.0
services:
- docker
dependencies:
override:
- docker info
test:
override:
- bash ./dash/scripts/circleci/pull-docker.sh:
parallel: true
- bash ./dash/scripts/circleci/run-docker.sh Release gnu:
parallel: true
- bash ./dash/scripts/circleci/run-docker.sh Minimal gnu:
parallel: true
- bash ./dash/scripts/circleci/run-docker.sh Nasty gnu:
parallel: true
- bash ./dash/scripts/circleci/run-docker.sh Release clang:
parallel: true
- grep "FAIL" ./dash-ci.log && (echo "Full log:" ; cat ./dash-ci.log ; exit 1) || exit 0:
parallel: true
post:
- cat ./dash-ci.err