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

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