aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.travis.yml
blob: 4a2279cf2ef8d18e3c78414e0b24c239e721eeb4 (plain) (blame)
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
29
30
31
32
33
34
35
36
37
38
39
language: cpp
os: linux
dist: focal

addons:
  apt:
    update: true
    packages:
      - g++-multilib

jobs:
  include:
    - name: Run clang-format
      language: shell
      addons:
        apt:
          update: true
          packages:
            - clang-format-9
      script: ./tools/clang-format.py --clang-format clang-format-9

    - name: Simple CMake projects
      script:
        - make -f .ci/Makefile simple
        - make -f .ci/Makefile static
        - make -f .ci/Makefile dynamic

    - name: Boost 1.58
      script: make -f .ci/Makefile boost/58

    - name: Boost 1.72
      script: make -f .ci/Makefile boost/72

    - name: Boost 1.65
      script: make -f .ci/Makefile boost/65
      env:
        boost_version: 1.65.0
        configuration: MinSizeRel
        platform: x64