liyujie
2025-08-28 d9927380ed7c8366f762049be9f3fee225860833
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# One may have a look at http://docs.travis-ci.com/user/installing-dependencies/
 
language: c
 
notifications:
  - email: true
 
# Install the cross-compiler
before_install:
  - sudo apt-get update -qq
  - sudo apt-get install -y gcc-arm-linux-gnueabihf
  - arm-linux-gnueabihf-gcc --version
  # Travis does 'export CC=gcc'. Unset CC so that ./flags.mk properly
  # defines the cross-compiler to the default value: $(CROSS_COMPILE)gcc.
  - unset CC
 
# Several compilation options are checked
script:
  - make clean all
  - CFG_TEE_CLIENT_LOG_LEVEL=0 make clean all
  - CFG_TEE_CLIENT_LOG_LEVEL=5 make clean all