aboutsummaryrefslogtreecommitdiffstats
path: root/circle.yml
blob: 7775bcfb0e4316908db44d4ed7e49cde30fa9a0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
dependencies:
  cache_directories:
    - "~/.kerl"
    - "~/erlang"

  pre:
    - 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
    - make ci-prepare:
        timeout: 3600

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