• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1sudo: required
2dist: bionic
3
4before_install:
5    - curl https://spot.fedorapeople.org/spotfoss-ppa.key | sudo apt-key add -
6    - wget https://launchpad.net/~spotfoss/+archive/ubuntu/ppa/+files/valgrind_3.16.1-2_amd64.deb
7    - sudo apt install ./valgrind_3.16.1-2_amd64.deb
8language:
9    - c
10    - c++
11addons:
12  apt:
13    sources:
14    - sourceline: 'ppa:ubuntu-toolchain-r/test'
15    packages:
16    - doxygen
17    - clang
18    - libstdc++-7-dev
19    - libstdc++-10-dev
20    - gcc
21    - gcc-7
22    - gcc-10
23    - python3-pip
24    - python3-setuptools
25    - ninja-build
26install: test/travis-install.sh
27script: test/travis-build.sh
28
29