.travis.yml 5.7 KB
Newer Older
1 2 3 4 5 6 7 8
#
# Configuration
#
#
# Build Matrix
#
matrix:
  - os: linux
9 10 11 12 13 14 15 16
    language: c

    git:
      - depth: 1

    compiler: gcc
    env: DESC="linux/gcc build and test"

17 18 19 20 21
    addons:
      apt:
        packages:
          - build-essential
          - cmake
sangshuduo's avatar
sangshuduo 已提交
22
          - net-tools
23 24 25 26
          - python-pip
          - python-setuptools
          - python3-pip
          - python3-setuptools
27
          - valgrind
28

29 30
    before_install:
      - sudo apt update -y -qq
31
      - sudo apt install -y net-tools python-pip python-setuptools python3-pip python3-setuptools valgrind
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46

    before_script:
      - cd ${TRAVIS_BUILD_DIR}
      - mkdir debug
      - cd debug

    script:
      - cmake ..
      - make

    after_success:
      - |-
        case $TRAVIS_OS_NAME in
          linux)
          cd ${TRAVIS_BUILD_DIR}/debug
sangshuduo's avatar
sangshuduo 已提交
47
          make install || travis_terminate $?
48 49 50 51 52

          pip install --user ${TRAVIS_BUILD_DIR}/src/connector/python/linux/python2/
          pip3 install --user ${TRAVIS_BUILD_DIR}/src/connector/python/linux/python3/

          cd ${TRAVIS_BUILD_DIR}/tests
53
          ./test-all.sh || travis_terminate $?
54

55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
          cd ${TRAVIS_BUILD_DIR}/tests/pytest
          ./simpletest.sh -g 2>&1 | tee mem-error-out.txt
          sleep 1

          # Color setting
          RED='\033[0;31m'
          GREEN='\033[1;32m'
          GREEN_DARK='\033[0;32m'
          GREEN_UNDERLINE='\033[4;32m'
          NC='\033[0m'

          memError=`grep -m 1 'ERROR SUMMARY' mem-error-out.txt | awk '{print $4}'`

          if [ -n "$memError" ]; then
            if [ "$memError" -gt 23 ]; then
              echo -e "${RED} ## Memory errors number valgrind reports is $memError. More than our threshold! ## ${NC} "
              travis_terminate $memError
            fi
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
          fi

          ;;
        esac

  - os: linux
    language: c
    compiler: gcc
    env: COVERITY_SCAN=true
    git:
      - depth: 1

    script:
      - echo "this job is for coverity scan"

    addons:
      coverity_scan:

        # GitHub project metadata
        # ** specific to your project **
        project:
94
          name: TDengine
95
          version: 2.x
96
          description: taosdata/TDengine
97 98

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

        # Commands to prepare for build_command
        # ** likely specific to your build **
103
        build_command_prepend: cmake .
104 105 106

        # The command that will be added as an argument to "cov-build" to compile your project for analysis,
        # ** likely specific to your build **
107
        build_command: make
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151

        # 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

  - os: linux
    language: c
    compiler: gcc
    env: ENV_COVER=true

    git:
      - depth: 1

    addons:
      apt:
        packages:
          - build-essential
          - cmake
          - net-tools
          - python-pip
          - python-setuptools
          - python3-pip
          - python3-setuptools
          - lcov

    before_install:
      - sudo apt update -y -qq
      - sudo apt install -y net-tools python-pip python-setuptools python3-pip python3-setuptools lcov

    before_script:
      - cd ${TRAVIS_BUILD_DIR}
      - mkdir debug
      - cd debug

    script:
      - cmake -DCOVER=true ..
      - make

    after_success:
      - |-
        case $TRAVIS_OS_NAME in
          linux)
          cd ${TRAVIS_BUILD_DIR}/debug
sangshuduo's avatar
sangshuduo 已提交
152
          make install || travis_terminate $?
153 154 155 156 157 158

          pip install --user ${TRAVIS_BUILD_DIR}/src/connector/python/linux/python2/
          pip3 install --user ${TRAVIS_BUILD_DIR}/src/connector/python/linux/python3/

          cd ${TRAVIS_BUILD_DIR}/tests

159
          ./test-all.sh
160 161

          if [ "$?" -ne "0" ]; then
162
            travis_terminate $?
163 164
          fi

sangshuduo's avatar
sangshuduo 已提交
165
          pkill taosd
166 167
          sleep 1

168
          cd ${TRAVIS_BUILD_DIR}
sangshuduo's avatar
sangshuduo 已提交
169
          lcov -d . --capture --rc lcov_branch_coverage=1 -o coverage.info
170
          lcov -l --rc lcov_branch_coverage=1 coverage.info || travis_terminate $?
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187

          gem install coveralls-lcov

          # Color setting
          RED='\033[0;31m'
          GREEN='\033[1;32m'
          GREEN_DARK='\033[0;32m'
          GREEN_UNDERLINE='\033[4;32m'
          NC='\033[0m'

          coveralls-lcov coverage.info
          if [ "$?" -eq "0" ]; then
            echo -e "${GREEN} ## Uploaded to Coveralls.io! ## ${NC}"
          else
            echo -e "${RED} ## Coveralls.io not collect coverage report! ## ${NC} "
          fi

sangshuduo's avatar
sangshuduo 已提交
188
          bash <(curl -s https://codecov.io/bash) -y .codecov.yml -f coverage.info
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
          if [ "$?" -eq "0" ]; then
            echo -e "${GREEN} ## Uploaded to Codecov! ## ${NC} "
          else
            echo -e "${RED} ## Codecov did not collect coverage report! ## ${NC} "
          fi

          ;;
        esac

  - os: linux
    language: c
    compiler: clang
    env: DESC="linux/clang build"
    git:
      - depth: 1

    addons:
      apt:
        packages:
          - build-essential
          - cmake
210

211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
    before_script:
      - cd ${TRAVIS_BUILD_DIR}
      - mkdir debug
      - cd debug

    script:
      - cmake ..
      - make

        #  - os: osx
        #    language: c
        #    compiler: clang
        #    env: DESC="mac/clang build"
        #    git:
        #      - depth: 1
        #    addons:
        #      homebrew:
        #        - cmake
        #
        #    script:
        #      - cd ${TRAVIS_BUILD_DIR}
        #      - mkdir debug
        #      - cd debug
        #      - cmake ..
        #      - make