aboutsummaryrefslogtreecommitdiffstats
path: root/circle.yml
blob: 387156a8712d2d8cf25860978212d5acf4bea788 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
general:
  artifacts:
    - "logs"

dependencies:
  cache_directories:
    - "~/.kerl"
    - "~/erlang"

  pre:
    - sudo pip install autobahntestsuite
    - sudo apt-get update
    - sudo apt-get install autoconf2.59
    - cd $HOME/bin && ln -s /usr/bin/autoconf2.59 autoconf
    - cd $HOME/bin && ln -s /usr/bin/autoheader2.59 autoheader
    - KERL_MAKEFLAGS="-j 32 -O" make ci-prepare:
        timeout: 3600

test:
  override:
    - source $HOME/erlang/OTP-18.2.2/activate && make dialyze
    - make -k ci:
        timeout: 3600