@@ -18,20 +18,49 @@ before_install:
18
18
- git clone https://github.com/terryyin/lizard.git
19
19
- cd lizard
20
20
- sudo python setup.py install
21
- - cd ~
22
- - git clone http://dpdk.org/git/dpdk
23
- - cd dpdk
24
- - git checkout -b v18.08 v18.08
25
- - export RTE_SDK=~/dpdk
26
- - make config T=x86_64-native-linuxapp-clang
27
- - sed -i -e "s/CONFIG_RTE_LIBRTE_PMD_PCAP=n/CONFIG_RTE_LIBRTE_PMD_PCAP=y/" build/.config
28
- - make EXTRA_CFLAGS='-fPIC'
29
-
30
- script :
31
21
- cd $TRAVIS_BUILD_DIR
32
- - git config user.name "${GH_USER_NAME}"
33
- - git config user.email "${USER_MAIL}"
34
- - ./autogen.sh
35
- - export LD="llvm-link"
36
- - ./configure_clang --with-benchmarks --with-examples
37
- - ./.travis.sh
22
+ - cat /proc/cpuinfo | grep processor | wc -l
23
+
24
+ # stages:
25
+ # - Build
26
+ # - Style
27
+ # - Integration
28
+ # - Doc
29
+
30
+ jobs :
31
+ include :
32
+ - stage : Build
33
+ script : bash -x ./.travis_build_dpdk_pg.sh
34
+ - script : make style
35
+ - script : ./tests/antispoof/test.sh
36
+ # - ./tests/core/test.sh
37
+ # - ./tests/diode/test.sh
38
+ # - ./tests/firewall/test.sh
39
+ # - ./tests/nic/test.sh
40
+ # - ./tests/print/test.sh
41
+ # - ./tests/queue/test.sh
42
+ # - ./tests/switch/test.sh
43
+ # - ./tests/vtep/test.sh
44
+ # - ./tests/rxtx/test.sh
45
+ # - ./tests/pmtud/test.sh
46
+ # - ./tests/tap/test.sh
47
+ # - ./tests/ip-fragment/test.sh
48
+ # - ./tests/thread/test.sh
49
+ #
50
+ # - ./tests/antispoof/bench.sh
51
+ # - ./tests/core/bench.sh
52
+ # - ./tests/diode/bench.sh
53
+ # - ./tests/firewall/bench.sh
54
+ # - ./ad tests/nic/bench.sh
55
+ # - ./tests/print/bench.sh
56
+ # - ./tests/queue/bench.sh
57
+ # - ./tests/switch/bench.sh
58
+ # - ./tests/vtep/bench.sh
59
+ # - ./tests/rxtx/bench.sh
60
+ # - ./tests/pmtud/bench.sh
61
+ # - ./tests/tap/bench.sh
62
+ # - ./tests/ip-fragment/bench.sh
63
+ #
64
+ # - stage: Doc
65
+ # script:
66
+ # - make doc
0 commit comments