.travis.yml 1.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#
# Configuration
#
git:
  depth: 1

language: c

compiler:
  - clang
  - gcc

os:
  - linux
sangshuduo's avatar
sangshuduo 已提交
15
#  - osx
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

addons:
  coverity_scan:

    # GitHub project metadata
    # ** specific to your project **
    project:
      name: TDengine
      version: 2.x
      description: TDengine

    # Where email notification of build analysis results will be sent
    notification_email: sdsang@taosdata.com

    # Commands to prepare for build_command
    # ** likely specific to your build **
    build_command_prepend: cmake ..

    # The command that will be added as an argument to "cov-build" to compile your project for analysis,
    # ** likely specific to your build **
    build_command: cmake --build .

    # Pattern to match selecting branches that will run analysis. We recommend leaving this set to 'coverity_scan'.
    # Take care in resource usage, and consider the build frequency allowances per
    #   https://scan.coverity.com/faq#frequency
    branch_pattern: coverity_scan

before_script:
sangshuduo's avatar
sangshuduo 已提交
44 45
  - mkdir debug
  - cd debug
46 47 48

script:
  - cmake .. 
sangshuduo's avatar
sangshuduo 已提交
49
  - cmake --build . || exit $?
sangshuduo's avatar
sangshuduo 已提交
50 51 52 53
  - |-
    case $TRAVIS_OS_NAME in
      linux)
        cd ../tests/script
54 55
        sudo ./test.sh 2>&1 | grep 'success\|failed' | tee out.txt

sangshuduo's avatar
sangshuduo 已提交
56
        total_success=`grep success out.txt | wc -l`
57 58 59 60 61

        if [ "$total_success" -gt "0" ]; then
          total_success=`expr $total_success - 1`
        fi

sangshuduo's avatar
sangshuduo 已提交
62
        echo "Total $total_success success"
63

sangshuduo's avatar
sangshuduo 已提交
64 65
        total_failed=`grep failed out.txt | wc -l`
        echo "Total $total_failed failed"
66

67 68 69
        if [ "$total_failed" -ne "0" ]; then
          exit $total_failed
        fi
sangshuduo's avatar
sangshuduo 已提交
70 71
        ;;
    esac
72 73 74 75 76 77 78 79 80 81 82

#
# Build Matrix
#
matrix:
  - os: linux
    addons:
      apt:
        packages:
          - build-essential
          - cmake
sangshuduo's avatar
sangshuduo 已提交
83
          - net-tools
84

sangshuduo's avatar
sangshuduo 已提交
85 86 87 88
#  - os: osx
#    addons:
#      homebrew:
#        - cmake
89