aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 21fa9e3bac381be607f6f81a7c1ffce298ecb8c7 (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
# Copyright (c) 2016, Linaro Limited
# All rights reserved.
# SPDX-License-Identifier:     BSD-3-Clause
#
# Please update xxxx for your coverity token and notification email if required
# pushing to github/master will run make check
# pushing to github/coverity_scan will also launch a static analysis
# See https://scan.coverity.com/travis_ci

language: c
sudo: required
dist: trusty
group: deprecated-2017Q2
env:
  global:
    # COVERITY_SCAN_TOKEN
    # ** specific to your project **
    # Note:
    # You should have a github account and travis linked travis account.
    # The secure key to be filled below is the 685 character long encrypted
    # token you can find as follow from your coverity dashboard
    # (at https://scan.coverity.com/dashboard):
    # Click on the github project (<you>/odp)
    # Click on "submit build"
    # Click on "Configure Travis CI"
    # Look at the COVERITY_SCAN_TOKEN in the env: global: section
    # of the configuration example.
    # copy the secure:<key> below
    #
    - secure: "xxxx"
    #
    # By default Linaro CODECOV_TOKEN token is used. It's ok to use it to see
    # for individual commit validation. But you you want to track tests history
    # you need generated new one at https://codecov.io specific for your repo.
    - CODECOV_TOKEN=8e1c0fd8-62ff-411e-a79f-5839f6662c11

addons:
        apt:
                packages:
                        - gcc
                        - clang-3.8
                        - automake autoconf libtool libssl-dev graphviz mscgen
                        - libpcap-dev
#        coverity_scan:
#                project:
#                        name: "$TRAVIS_REPO_SLUG"
#                        notification_email: xxxx
#                        build_command_prepend: "./bootstrap && ./configure --enable-test-cpp --enable-test-vald --enable-test-helper --enable-test-perf --enable-user-guides --enable-test-perf-proc --enable-test-example"
#                        build_command:   "make"
#                        branch_pattern: coverity_scan

compiler:
        - gcc
        - clang-3.8

cache:
        ccache: true
        pip: true
        directories:
                - dpdk
                - netmap
                - $HOME/cunit-install

env:
        - CONF=""
        - CONF="--disable-abi-compat"
        - CONF="--enable-schedule-sp"
        - CONF="--enable-schedule-iquery"
        - CONF="--enable-dpdk-zero-copy"
        - CROSS_ARCH="arm64"
        - CROSS_ARCH="armhf" CFLAGS="-march=armv7-a"
        - CROSS_ARCH="powerpc"
        - CROSS_ARCH="i386"

before_install:

        # Install cross toolchains, etc
        # apt-get update may fail thanks to Ubuntu removing Packages/indices while not removing relevant parts of Release file
        - if [ -n "$CROSS_ARCH" ] ;
          then
                  BUILD_GNU_TYPE=`dpkg-architecture -a"$CROSS_ARCH" -qDEB_BUILD_GNU_TYPE` ;
                  CROSS_GNU_TYPE=`dpkg-architecture -a"$CROSS_ARCH" -qDEB_HOST_GNU_TYPE` ;
                  CROSS_MULTIARCH=`dpkg-architecture -a"$CROSS_ARCH" -qDEB_HOST_MULTIARCH` ;
                  CROSS="--host="$CROSS_GNU_TYPE" --build="$BUILD_GNU_TYPE"" ;
                  sudo dpkg --add-architecture "$CROSS_ARCH" ;
                  sudo -E apt-add-repository -y "deb http://ports.ubuntu.com trusty main" ;
                  sudo -E apt-add-repository -y "deb http://ports.ubuntu.com trusty-updates main" ;
                  sudo -E apt-get -y update || true ;
                  sudo -E apt-get -y --no-install-suggests --no-install-recommends --force-yes install build-essential ;
                  if [ "$CROSS_ARCH" = "i386" ] ;
                  then
                        sudo -E apt-get -y --no-install-suggests --no-install-recommends --force-yes install g++-multilib ;
                  else
                        sudo -E apt-get -y --no-install-suggests --no-install-recommends --force-yes install g++-"$CROSS_GNU_TYPE" ;
                  fi ;
                  sudo -E apt-get -y --no-install-suggests --no-install-recommends --force-yes install libc6-dev:"$CROSS_ARCH" libssl-dev:"$CROSS_ARCH" zlib1g-dev:"$CROSS_ARCH" libconfig-dev:"$CROSS_ARCH" libstdc++-4.8-dev:"$CROSS_ARCH";
                  export PKG_CONFIG_PATH=/usr/lib/${CROSS_MULTIARCH}/pkgconfig:/usr/${CROSS_MULTIARCH}/lib/pkgconfig ;
          fi
        - if [ "${CC#clang}" != "${CC}" ] ;
          then
                if [ -n "$CROSS_ARCH" ] ;
                then
                        export CC="${CC} --target=$CROSS_GNU_TYPE" ;
                fi ;
                export CXX="${CC/clang/clang++}";
          elif [ "$CROSS_ARCH" = "i386" ] ;
          then
                export CC="gcc -m32" ;
                export CXX="g++ -m32" ;
          elif [ -n "$CROSS_ARCH" ] ;
          then
                export CC="$CROSS_GNU_TYPE"-gcc ;
                export CXX="$CROSS_GNU_TYPE"-g++ ;
          fi
        - if test ! -L /usr/lib/ccache/${CC%% *} ; then sudo ln -s -t /usr/lib/ccache/ `which ${CC%% *}` ; fi
        - ccache -s
        # Install cunit for the validation tests because distro version is too old and fails C99 compile
        - sudo apt-get remove libcunit1-dev libcunit1
        - export LD_LIBRARY_PATH="$HOME/cunit-install/$CROSS_ARCH/lib:$LD_LIBRARY_PATH"
        - |
          if [ ! -f "$HOME/cunit-install/$CROSS_ARCH/lib/libcunit.a" ]; then
            export CUNIT_VERSION=2.1-3
            curl -sSOL https://github.com/Linaro/libcunit/releases/download/${CUNIT_VERSION}/CUnit-${CUNIT_VERSION}.tar.bz2
            tar -jxf *.bz2
            pushd CUnit*
            libtoolize --force --copy
            aclocal
            autoheader
            automake --add-missing --include-deps --copy
            autoconf
            ./configure --prefix=$HOME/cunit-install/$CROSS_ARCH --enable-debug --enable-automated --enable-basic --enable-console --enable-examples --enable-test $CROSS || cat config.log
            make
            sudo make install
            popd
          fi
        - export PKG_CONFIG_PATH="$HOME/cunit-install/$CROSS_ARCH/lib/pkgconfig:${PKG_CONFIG_PATH}"
        - find $HOME/cunit-install

install:
        - echo 1000 | sudo tee /proc/sys/vm/nr_hugepages
        - sudo mkdir -p /mnt/huge
        - sudo mount -t hugetlbfs nodev /mnt/huge

        - if [ -z "$CROSS_ARCH" ] ;
          then
                sudo apt-get -qq update ;
                sudo apt-get install linux-headers-`uname -r` ;
          fi
        - gem install asciidoctor

#	DPDK pktio. Note that cache must be purged if dpdk version changes.
        - TARGET=${TARGET:-"x86_64-native-linuxapp-gcc"}
        - |
          if [ -z "$CROSS_ARCH" -a ! -f "dpdk/${TARGET}/lib/libdpdk.a" ]; then
            git -c advice.detachedHead=false clone -q --depth=1 --single-branch --branch=v17.02 http://dpdk.org/git/dpdk dpdk
            pushd dpdk
            git log --oneline --decorate
            make config T=${TARGET} O=${TARGET}
            pushd ${TARGET}
            sed -ri 's,(CONFIG_RTE_LIBRTE_PMD_PCAP=).*,\1y,' .config
            popd
            make install T=${TARGET} EXTRA_CFLAGS="-fPIC"
            rm -r ./doc ./${TARGET}/app ./${TARGET}/build
            popd
          fi

#	Netmap pktio
        - |
          if [ -z "$CROSS_ARCH" -a ! -f "netmap/LINUX/netmap.ko" ]; then
            git -c advice.detachedHead=false clone -q --depth=1 --single-branch --branch=v11.2 https://github.com/luigirizzo/netmap.git
            pushd netmap/LINUX
            ./configure
            make
            sudo insmod ./netmap.ko
            popd
          fi

script:
        - if [ -z "$CROSS_ARCH" ] ; then
                EXTRA_CONF="--with-dpdk-path=`pwd`/dpdk/${TARGET} --with-netmap-path=`pwd`/netmap" ;
          fi
        - ./bootstrap
        - ./configure --prefix=$HOME/odp-install
          --enable-user-guides
          --enable-debug=full
          --enable-helper-linux
          $CROSS $EXTRA_CONF $CONF
        - make -j $(nproc)
        - mkdir /dev/shm/odp
        - if [ -z "$CROSS_ARCH" ] ; then
          sudo LD_LIBRARY_PATH="$HOME/cunit-install/$CROSS_ARCH/lib:$LD_LIBRARY_PATH" ODP_SHM_DIR=/dev/shm/odp make check ;
          fi
        - make install

        - echo "Checking linking and run from install..."
        - pushd $HOME
        - echo "Dynamic link.."
        - ${CC} ${CFLAGS} ${OLDPWD}/example/hello/odp_hello.c -o odp_hello_inst_dynamic `PKG_CONFIG_PATH=${HOME}/odp-install/lib/pkgconfig:${PKG_CONFIG_PATH} pkg-config --cflags --libs libodp-linux`
        - echo "Static link.."
        - ${CC} ${CFLAGS} ${OLDPWD}/example/hello/odp_hello.c -o odp_hello_inst_static `PKG_CONFIG_PATH=${HOME}/odp-install/lib/pkgconfig:${PKG_CONFIG_PATH} pkg-config --cflags --libs libodp-linux --static` -static
        - if [ -z "$CROSS_ARCH" ] ; then
          LD_LIBRARY_PATH="${HOME}/odp-install/lib:$LD_LIBRARY_PATH" ./odp_hello_inst ;
          ./odp_hello_inst_static ;
          fi
        - popd
        - ccache -s

jobs:
        include:
                - stage: test
                  env: TEST=coverage
                  compiler: gcc
                  script:
                          - sudo pip install coverage
                          - ./bootstrap
                          - ./configure --prefix=$HOME/odp-install
                            --enable-user-guides
                            --with-dpdk-path=`pwd`/dpdk/${TARGET}
                            --with-netmap-path=`pwd`/netmap CFLAGS="-O0
                              -coverage"
                              CXXFLAGS="-O0 -coverage" LDFLAGS="--coverage"
                            --enable-debug=full
                            --enable-helper-linux
                          - sudo LD_LIBRARY_PATH="$HOME/cunit-install/$CROSS_ARCH/lib:$LD_LIBRARY_PATH" PATH=${PATH//:\.\/node_modules\/\.bin/} make check
                          - find . -type f -iname '*.[ch]' -not -path ".git/*" -execdir gcov {} \; ; bash <(curl -s https://codecov.io/bash) -X coveragepy
                - stage: test
                  env: TEST=distcheck
                  compiler: gcc
                  script:
                          - ./bootstrap
                          - ./configure --prefix=$HOME/odp-install
                            --enable-user-guides
                          - sudo PATH="$PATH" LD_LIBRARY_PATH="$HOME/cunit-install/$CROSS_ARCH/lib:$LD_LIBRARY_PATH" make distcheck
                - stage: test
                  env: TEST=doxygen
                  compiler: gcc
                  install:
                          - true
                  script:
                          - wget https://github.com/doxygen/doxygen/archive/Release_1_8_13.tar.gz
                          - tar xpvf Release_1_8_13.tar.gz
                          - pushd doxygen-Release_1_8_13
                          - cmake -DCMAKE_INSTALL_PREFIX=/usr .
                          - sudo make install
                          - popd

                          # doxygen does not trap on warnings, check for them here.
                          - ./bootstrap
                          - ./configure
                          - make doxygen-doc 2>&1 |tee doxygen.log
                          - fgrep -rq warning ./doxygen.log && false
                - stage: test
                  env: TEST=checkpatch
                  compiler: gcc
                  install:
                          - true
                  script:
                          - echo ${TRAVIS_COMMIT_RANGE};
                          - ODP_PATCHES=`echo ${TRAVIS_COMMIT_RANGE} | sed 's/\.//'`;
                          - if [ -z "${ODP_PATCHES}" ]; then env; exit 0; fi;
                          - ./scripts/ci-checkpatches.sh ${ODP_PATCHES};

after_failure:
  - cat config.log
  - find . -name 'test-suite.log' -execdir grep -il "FAILED" {} \; -exec echo {} \; -exec cat {} \;