huangcm
2025-07-01 676035278781360996553c427a12bf358249ebf7
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
language: c
 
os:
 - linux
 
env:
 - EXTRALIBS="gettext libusb-dev"
 - EXTRALIBS="gettext libusb-1.0-0-dev"
 
# Note: Keep the sudo commands in .travis.yml - they do not work from
#       a helper shell script.
before_install:
 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install $(sh .travis-translate-pkgs $EXTRALIBS); fi
 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update -qq; fi
 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y $(sh .travis-translate-pkgs $EXTRALIBS); fi
 
compiler:
 - clang
 - gcc
 
script:
 - export PATH=/usr/local/opt/gettext/bin:$PATH ; echo "n" | sh ./autogen.sh
 - make && make check
 
notifications:
  email:
    on_success: change
    on_failure: always