about summary refs log tree commit diff stats
path: root/.travis.yml
blob: 1d190e09a7b2562bf9558946be2d2c9add5604ac (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
language: c
arch:
  - amd64
  - arm64-graviton2
os: linux
dist: focal

compiler:
    - gcc

addons:
  apt:
    packages:
      - python3

      #Build steps
before_script:
    - mkdir build
    - cd build
    - if [ "$TRAVIS_CPU_ARCH" = "arm64" ]; then cmake .. -DRK3399=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo ; else cmake .. -DLD80BITS=1 -DNOALIGN=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo ; fi

script:
    - make
    - ctest --output-on-failure