aboutsummaryrefslogtreecommitdiffstats
path: root/circle.yml
blob: b6514110573fca7ac69c04f557f692ffaad3385a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
general:
  branches:
    ignore:
      - gh-pages

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

  pre:
    - sudo apt-get update
    - sudo apt-get install autoconf2.59 gcc parallel
    - cd $HOME/bin && ln -s /usr/bin/autoconf2.59 autoconf
    - cd $HOME/bin && ln -s /usr/bin/autoheader2.59 autoheader
    - CI_OTP=OTP-18.2.1 make -f core/core.mk -f plugins/ci.mk ci-prepare:
        timeout: 3600

test:
  override:
    - source $HOME/erlang/OTP-18.2.1/activate && make -j 32 -k check
    - source $HOME/erlang/OTP-18.2.1/activate && make -j 32 -k check LEGACY=1