summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: bcee2f2f0e7f7d5e24fd04579f127b8cb9b51dcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
sudo: required
dist: bionic

before_install:
    - curl https://spot.fedorapeople.org/spotfoss-ppa.key | sudo apt-key add -
    - wget https://launchpad.net/~spotfoss/+archive/ubuntu/ppa/+files/valgrind_3.16.1-2_amd64.deb
    - sudo apt install ./valgrind_3.16.1-2_amd64.deb
language:
    - c
    - c++
addons:
  apt:
    sources:
    - sourceline: 'ppa:ubuntu-toolchain-r/test'
    packages:
    - doxygen
    - clang
    - libstdc++-7-dev 
    - libstdc++-10-dev
    - gcc
    - gcc-7
    - gcc-10
    - python3-pip
    - python3-setuptools
    - ninja-build
install: test/travis-install.sh
script: test/travis-build.sh