mirror of https://github.com/F-Stack/f-stack.git
21 lines
476 B
YAML
21 lines
476 B
YAML
language: c
|
|
cache:
|
|
directories:
|
|
dpdk
|
|
|
|
compiler:
|
|
- gcc
|
|
|
|
# before_install:
|
|
# - sudo apt-get install -y coreutils build-essential git
|
|
# - sudo apt-get install -y linux-headers-`uname -r`
|
|
|
|
install:
|
|
- sudo apt-get install -y coreutils build-essential git
|
|
- sudo apt-get install -y linux-headers-`uname -r`
|
|
|
|
script:
|
|
- make -C dpdk install T=x86_64-native-linuxapp-gcc
|
|
- make -C lib CONF_CFLAGS="-Wno-unused-but-set-variable"
|
|
- make -C tools
|
|
- make -C example |