.travis.yml 6.9 KB
Newer Older
1 2 3 4 5 6
#
# Configuration
#
#
# Build Matrix
#
S
Shuduo Sang 已提交
7 8 9 10 11 12 13
branches:
  only:
    - master
    - develop
    - coverity_scan
    - /^.*ci-.*$/

14 15
matrix:
  - os: linux
16
    dist: focal
17 18 19 20 21 22 23 24
    language: c

    git:
      - depth: 1

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

25 26 27 28 29
    addons:
      apt:
        packages:
          - build-essential
          - cmake
sangshuduo's avatar
sangshuduo 已提交
30
          - net-tools
31 32
          - python3-pip
          - python3-setuptools
33
          - valgrind
34
          - psmisc
35 36
          - unixodbc
          - unixodbc-dev
37
          - mono-complete
38

39
    before_script:
S
Shuduo Sang 已提交
40
      - export TZ=Asia/Harbin
S
Shuduo Sang 已提交
41
      - date
42 43 44 45 46
      - cd ${TRAVIS_BUILD_DIR}
      - mkdir debug
      - cd debug

    script:
47 48
      - cmake .. > /dev/null
      - make > /dev/null
49 50

    after_success:
S
Shuduo Sang 已提交
51
      - travis_wait 20
52 53 54 55
      - |-
        case $TRAVIS_OS_NAME in
          linux)
          cd ${TRAVIS_BUILD_DIR}/debug
56
          make install > /dev/null || travis_terminate $?
57

58 59
          py3ver=`python3 --version|awk '{print $2}'|cut -d "." -f 1,2` && apt install python$py3ver-dev
          pip3 install psutil
P
Ping Xiao 已提交
60
          pip3 install guppy3
61 62
          pip3 install --user ${TRAVIS_BUILD_DIR}/src/connector/python/linux/python3/

63 64 65 66 67
          cd ${TRAVIS_BUILD_DIR}/tests/examples/C#/taosdemo
          mcs -out:taosdemo *.cs || travis_terminate $?
          pkill -TERM -x taosd
          fuser -k -n tcp 6030
          sleep 1
68 69
          ${TRAVIS_BUILD_DIR}/debug/build/bin/taosd -c ${TRAVIS_BUILD_DIR}/debug/test/cfg > /dev/null &
          sleep 5
70
          mono taosdemo -Q DEFAULT -y || travis_terminate $?
71 72 73
          pkill -KILL -x taosd
          fuser -k -n tcp 6030
          sleep 1
74

75
          cd ${TRAVIS_BUILD_DIR}/tests
76
          ./test-all.sh smoke || travis_terminate $?
S
Shuduo Sang 已提交
77 78 79
          sleep 1

          cd ${TRAVIS_BUILD_DIR}/tests/pytest
S
Shuduo Sang 已提交
80 81 82
          pkill -TERM -x taosd
          fuser -k -n tcp 6030
          sleep 1
S
Shuduo Sang 已提交
83
          ./crash_gen.sh -a -p -t 4 -s 2000|| travis_terminate $?
S
Shuduo Sang 已提交
84
          sleep 1
85

86
          cd ${TRAVIS_BUILD_DIR}/tests/pytest
87
          ./valgrind-test.sh 2>&1 > mem-error-out.log
88 89
          sleep 1

90

91 92 93 94 95 96 97
          # Color setting
          RED='\033[0;31m'
          GREEN='\033[1;32m'
          GREEN_DARK='\033[0;32m'
          GREEN_UNDERLINE='\033[4;32m'
          NC='\033[0m'

98
          grep 'start to execute\|ERROR SUMMARY' mem-error-out.log|grep -v 'grep'|uniq|tee uniq-mem-error-out.log
sangshuduo's avatar
sangshuduo 已提交
99

100
          for memError in `grep 'ERROR SUMMARY' uniq-mem-error-out.log | awk '{print $4}'`
sangshuduo's avatar
sangshuduo 已提交
101 102
          do
            if [ -n "$memError" ]; then
103
              if [ "$memError" -gt 12 ]; then
sangshuduo's avatar
sangshuduo 已提交
104 105 106 107
                echo -e "${RED} ## Memory errors number valgrind reports is $memError.\
                         More than our threshold! ## ${NC}"
                travis_terminate $memError
              fi
108
            fi
sangshuduo's avatar
sangshuduo 已提交
109 110
          done

111 112
          grep 'start to execute\|definitely lost:' mem-error-out.log|grep -v 'grep'|uniq|tee uniq-definitely-lost-out.log
          for defiMemError in `grep 'definitely lost:' uniq-definitely-lost-out.log | awk '{print $7}'`
sangshuduo's avatar
sangshuduo 已提交
113 114
          do
            if [ -n "$defiMemError" ]; then
115
              if [ "$defiMemError" -gt 13 ]; then
sangshuduo's avatar
sangshuduo 已提交
116 117 118 119 120 121
                echo -e "${RED} ## Memory errors number valgrind reports \
                         Definitely lost is $defiMemError. More than our threshold! ## ${NC}"
                travis_terminate $defiMemError
              fi
            fi
          done
122 123 124 125 126

          ;;
        esac

  - os: linux
127
    dist: bionic
128 129 130 131 132 133 134 135 136 137 138 139 140 141
    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:
142
          name: TDengine
143
          version: 2.x
144
          description: TDengine
145 146

        # Where email notification of build analysis results will be sent
147
        notification_email: sdsang@taosdata.com, slguan@taosdata.com
148 149 150

        # Commands to prepare for build_command
        # ** likely specific to your build **
151
        build_command_prepend: cmake . > /dev/null
152 153 154

        # The command that will be added as an argument to "cov-build" to compile your project for analysis,
        # ** likely specific to your build **
155
        build_command: make
156 157 158 159 160 161 162

        # 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
163
    dist: trusty
S
Shuduo Sang 已提交
164 165 166 167 168 169 170 171 172
    language: c
    git:
      - depth: 1

    addons:
      apt:
        packages:
          - build-essential
          - cmake
173
          - binutils-2.26
F
freemine 已提交
174 175
          - unixodbc
          - unixodbc-dev
S
Shuduo Sang 已提交
176
    env: 
177
      - DESC="trusty/gcc-4.8/bintuils-2.26 build"
S
Shuduo Sang 已提交
178 179

    before_script:
S
Shuduo Sang 已提交
180
      - export TZ=Asia/Harbin
S
Shuduo Sang 已提交
181
      - date
S
Shuduo Sang 已提交
182 183 184 185 186 187
      - cd ${TRAVIS_BUILD_DIR}
      - mkdir debug
      - cd debug

    script:
      - cmake .. > /dev/null
188
      - export PATH=/usr/lib/binutils-2.26/bin:$PATH && make
S
Shuduo Sang 已提交
189

190
  - os: linux
191
    dist: bionic
192 193 194 195 196 197 198 199 200 201 202
    language: c
    compiler: clang
    env: DESC="linux/clang build"
    git:
      - depth: 1

    addons:
      apt:
        packages:
          - build-essential
          - cmake
F
freemine 已提交
203 204
          - unixodbc
          - unixodbc-dev
205

206
    before_script:
S
Shuduo Sang 已提交
207
      - export TZ=Asia/Harbin
S
Shuduo Sang 已提交
208
      - date
209 210 211 212 213
      - cd ${TRAVIS_BUILD_DIR}
      - mkdir debug
      - cd debug

    script:
S
yml  
Shengliang Guan 已提交
214 215
      - cmake .. > /dev/null
      - make  > /dev/null
216

O
odidev 已提交
217 218 219 220 221
  - os: linux
    arch: arm64
    dist: bionic
    language: c
    compiler: clang
222
    env: DESC="arm64 linux/clang build"
O
odidev 已提交
223 224 225 226 227 228 229 230 231 232
    git:
      - depth: 1

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

    before_script:
S
Shuduo Sang 已提交
233
      - export TZ=Asia/Harbin
S
Shuduo Sang 已提交
234
      - date
O
odidev 已提交
235 236 237 238 239 240 241 242 243 244 245 246 247 248
      - cd ${TRAVIS_BUILD_DIR}
      - mkdir debug
      - cd debug

    script:
      - if [ "${TRAVIS_CPU_ARCH}" == "arm64" ]; then
         cmake .. -DCPUTYPE=aarch64 > /dev/null;
        else
         cmake .. > /dev/null;
        fi
      - make > /dev/null

  - os: linux
    arch: arm64
L
relo  
liuyq-617 已提交
249
    dist: xenial
O
odidev 已提交
250 251 252 253 254 255 256 257 258
    language: c
    git:
      - depth: 1

    addons:
      apt:
        packages:
          - build-essential
          - cmake
F
freemine 已提交
259 260
          - unixodbc
          - unixodbc-dev
O
odidev 已提交
261
    env:
262
      - DESC="arm64 xenial build"
O
odidev 已提交
263 264

    before_script:
S
Shuduo Sang 已提交
265
      - export TZ=Asia/Harbin
S
Shuduo Sang 已提交
266
      - date
O
odidev 已提交
267 268 269 270 271 272 273 274 275 276 277 278
      - cd ${TRAVIS_BUILD_DIR}
      - mkdir debug
      - cd debug

    script:
      - if [ "${TRAVIS_CPU_ARCH}" == "arm64" ]; then
         cmake .. -DCPUTYPE=aarch64 > /dev/null;
        else
         cmake .. > /dev/null;
        fi
      - make > /dev/null

279 280 281 282 283 284 285 286 287 288
  - os: osx
    osx_image: xcode11.4
    language: c
    compiler: clang
    env: DESC="mac/clang build"
    git:
      - depth: 1
    addons:
      homebrew:
        - cmake
F
freemine 已提交
289
        - unixodbc
290 291 292 293 294 295 296

    script:
      - cd ${TRAVIS_BUILD_DIR}
      - mkdir debug
      - cd debug
      - cmake .. > /dev/null
      - make > /dev/null