summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 15657dadf24068e736081282a567aeaac24701a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: cpp

before_script:
  - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
  - sudo apt-get update -qq
  - sudo apt-get install -y g++-4.8
  - export CXX="g++-4.8" CC="gcc-4.8"
  - mkdir build
  - cd build
  - cmake -DINSTDIR:STRING=~/services -DDEFUMASK:STRING=077 -DCMAKE_BUILD_TYPE:STRING=DEBUG -DUSE_RUN_CC_PL:BOOLEAN=ON ..

script:
  - make

notifications:
  irc:
    - "irc.anope.org#anope-devel"