aboutsummaryrefslogtreecommitdiffstats
path: root/circle.yml
blob: f70513855bca0bff4c95d32f90d1b390a123dc89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
dependencies:
  pre:
    - sudo apt-get update -qq
    - sudo apt-get install clang
  post:
    - g++ --version
    - clang++ --version

general:
  branches:
    only:
      - master

test:
  override:
    - runall() { for f in "$@"; do bash $f; done }; runall:
        parallel: true
        files:
          - src/scripts/ci/circle/*.sh