Lines Matching +full:cmake +full:- +full:gcc
4 # Try building on these 4 architectures; all are 64-bit, and all but
5 # "s390x", a/k/a z/Architecture, are little-endian.
8 - amd64
9 - ppc64le
10 - s390x
11 - arm64
14 - linux
15 - osx
20 - gcc
21 - clang
25 # runs only on 64-bit x86, although the Spaceshipologists are all in a
26 # tizzy about the possibility of Arm-based Macs. Suppress the macOS
29 # In addition, with newer versions of macOS, Apple ships a "gcc" that's
32 # "gcc", so don't bother doing "gcc" builds on macOS.
36 - arch: ppc64le
38 - arch: s390x
40 - arch: arm64
42 - compiler: gcc
51 …- secure: "SwNcek+I4lMVcnb5EGGmNm6ljWN6C/mnXzBr82a5rEQNKxAoJfdvvPpKIp0iEfg5j0PtYlcRHoIDyVZ/6QM/WEw…
54 …- coverity_scan_run_condition='"$TRAVIS_CPU_ARCH" = amd64 -a "$TRAVIS_OS_NAME" = linux -a "$CC" = …
57 - coverity_scan_script_test_mode=false
58 - MAKEFLAGS='-j 2' # Travis CI VMs come with 2 cores
60 - REMOTE=disable CMAKE=no
61 - ENABLE_REMOTE="" CMAKE=yes
62 - REMOTE=enable CMAKE=no
63 - ENABLE_REMOTE="-DENABLE_REMOTE=ON" CMAKE=yes
73 …: https://raw.githubusercontent.com/$TRAVIS_REPO_SLUG/$TRAVIS_BRANCH/.travis-coverity-scan-build.sh
78 #notification_email: tcpdump-workers@lists.tcpdump.org
80 build_command_prepend: ./configure --enable-remote
81 # This command will be added as an argument to "cov-build" to compile
88 - libdbus-1-dev
89 - libbluetooth-dev
90 - libnl-genl-3-dev
91 - libibverbs-dev
98 - uname -a
99 - date
100 - if [ "$TRAVIS_OS_NAME" = linux ]; then apt list --installed 'lib*-dev'; fi
107 - if [ "$COVERITY_SCAN_BRANCH" = 1 ]; then echo "Coverity build - nothing more to do"; exit 0; fi
108 - touch .devel configure
109 …- if [ "$CMAKE" = no ]; then echo '$ ./configure [...]' && echo travis_fold:start:script.configure…
110 - if [ "$CMAKE" = no ]; then ./configure --prefix=/tmp "--${REMOTE}-remote"; fi
111 - if [ "$CMAKE" = no ]; then echo -n travis_fold:end:script.configure; fi
112 - if [ "$CMAKE" = yes ]; then mkdir build; fi
113 - if [ "$CMAKE" = yes ]; then cd build; fi
114 - if [ "$CMAKE" = yes ]; then echo travis_fold:start:script.cmake; fi
115 - if [ "$CMAKE" = yes ]; then cmake -DCMAKE_INSTALL_PREFIX=/tmp $ENABLE_REMOTE ..; fi
116 - if [ "$CMAKE" = yes ]; then echo -n travis_fold:end:script.cmake; fi
117 - make -s
118 - make -s testprogs
119 - echo '$ make install [...]' && echo travis_fold:start:script.make_install
120 - PATH=$PATH make install
121 - echo -n travis_fold:end:script.make_install
122 - if [ "$CMAKE" = no ]; then testprogs/findalldevstest; fi
123 - if [ "$CMAKE" = yes ]; then run/findalldevstest; fi
124 - if [ "$CMAKE" = no ]; then make releasetar; fi
125 - echo '$ cat Makefile [...]'; echo travis_fold:start:script.cat_makefile
126 …- if [ "$CMAKE" = no ]; then cat Makefile | sed -n '1,/DO NOT DELETE THIS LINE -- mkdep uses it/p'…
127 - if [ "$CMAKE" = yes ]; then cat Makefile; fi
128 - echo -n travis_fold:end:script.cat_makefile
129 - echo '$ cat config.h'; echo travis_fold:start:script.cat_config_h
130 - cat config.h
131 - echo -n travis_fold:end:script.cat_config_h
132 …- if [ "$CMAKE" = no ]; then echo '$ cat config.log'; echo travis_fold:start:script.cat_config_log…
133 - if [ "$CMAKE" = no ]; then cat config.log; fi
134 - if [ "$CMAKE" = no ]; then echo -n travis_fold:end:script.cat_config_log; fi
135 - if [ "$TRAVIS_OS_NAME" = osx ]; then sleep 10; fi