mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-05 08:28:32 +00:00
36 lines
629 B
YAML
36 lines
629 B
YAML
|
language: c
|
||
|
os: linux
|
||
|
sudo: false
|
||
|
|
||
|
matrix:
|
||
|
include:
|
||
|
- compiler: gcc
|
||
|
addons:
|
||
|
apt:
|
||
|
sources:
|
||
|
- ubuntu-toolchain-r-test
|
||
|
packages:
|
||
|
- check
|
||
|
- libsubunit-dev
|
||
|
- gcc-5
|
||
|
env: COMPILER=gcc-5
|
||
|
- compiler: clang
|
||
|
addons:
|
||
|
apt:
|
||
|
sources:
|
||
|
- ubuntu-toolchain-r-test
|
||
|
- llvm-toolchain-precise-3.8
|
||
|
packages:
|
||
|
- check
|
||
|
- libsubunit-dev
|
||
|
- clang-3.8
|
||
|
env: COMPILER=clang-3.8
|
||
|
|
||
|
addons:
|
||
|
apt:
|
||
|
packages:
|
||
|
- check
|
||
|
- libsubunit-dev
|
||
|
|
||
|
script: ./test.sh
|