aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 440dd1fdf6b305db951a39fbd6d77ff146cbe8af (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
language: cpp
dist: focal

jobs:
  include:
    # Clang on OSX
    - env: MATRIX_EVAL="" CONF=""
      os: osx
      osx_image: xcode12.2
      compiler: clang

    # GCC builds on Linux
    - env: MATRIX_EVAL="CC=gcc-10 CXX=g++-10" CONF="--disable-output-edi"
      os: linux
      arch: amd64
      compiler: gcc
      addons: &linuxaddons
        apt:
          packages: &packages
            - libzmq3-dev
            - libzmq5
            - automake
            - libtool
            - libboost-all-dev
            - libcurl4-openssl-dev
            - g++-10

    - env: MATRIX_EVAL="CC=gcc-10 CXX=g++-10" CONF="--enable-output-raw"
      arch: amd64
      compiler: gcc
      addons: *linuxaddons

    - env: MATRIX_EVAL="CC=gcc-10 CXX=g++-10" CONF=""
      arch: amd64
      compiler: gcc
      addons: *linuxaddons

    - env: MATRIX_EVAL="CC=gcc-10 CXX=g++-10" CONF=""
      arch: arm64
      compiler: gcc
      addons: *linuxaddons

before_install:
  - eval "${MATRIX_EVAL}"
  - |
    if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
    brew update
    brew install automake || true
    brew install zeromq || true
    brew install boost || true
    brew install curl || true
    fi

script:
  - |
    ./bootstrap.sh
    ./configure $CONF
    make