2019-04-05 22:35:45 +00:00
|
|
|
language: c
|
|
|
|
compiler: gcc
|
|
|
|
sudo: required
|
2019-05-22 21:20:58 +00:00
|
|
|
dist: xenial
|
2019-04-05 22:35:45 +00:00
|
|
|
|
|
|
|
before_install:
|
|
|
|
- export ALL_DEB=$(wget --quiet -O - ${KERNEL_URL}v${KVER}/ | grep -o 'href=".*"' | grep -m1 all | cut -d '"' -f 2)
|
|
|
|
- export KVER_BUILD=$(echo $ALL_DEB | cut -d '_' -f 1 | cut -c15-)
|
|
|
|
- wget ${KERNEL_URL}v${KVER}/$(wget --quiet -O - ${KERNEL_URL}v${KVER}/ | grep -o 'href=".*"' | grep headers | grep generic | grep -m1 amd64 | cut -d '"' -f 2)
|
|
|
|
- wget ${KERNEL_URL}v${KVER}/$ALL_DEB
|
|
|
|
- sudo dpkg -i *.deb
|
|
|
|
|
|
|
|
script:
|
|
|
|
- make CC=$COMPILER KVER=$KVER_BUILD-generic
|
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- KERNEL_URL=http://kernel.ubuntu.com/~kernel-ppa/mainline/
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- compiler: gcc
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- sourceline: 'ppa:ondrej/nginx-mainline'
|
|
|
|
packages:
|
|
|
|
- libssl1.1
|
2019-09-22 00:44:09 +00:00
|
|
|
env: COMPILER=gcc-5 KVER=5.3.1
|
2019-04-05 22:35:45 +00:00
|
|
|
- compiler: gcc
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
- sourceline: 'ppa:ondrej/nginx-mainline'
|
|
|
|
packages:
|
|
|
|
- gcc-6
|
|
|
|
- libssl1.1
|
2019-09-22 00:44:09 +00:00
|
|
|
env: COMPILER=gcc-6 KVER=5.3.1
|
2019-04-05 22:35:45 +00:00
|
|
|
- compiler: gcc
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
- sourceline: 'ppa:ondrej/nginx-mainline'
|
|
|
|
packages:
|
|
|
|
- gcc-7
|
|
|
|
- libssl1.1
|
2019-09-22 00:44:09 +00:00
|
|
|
env: COMPILER=gcc-7 KVER=5.3.1
|
2019-04-05 22:35:45 +00:00
|
|
|
- compiler: gcc
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
2019-04-13 12:16:54 +00:00
|
|
|
- sourceline: 'ppa:ondrej/nginx-mainline'
|
2019-04-05 22:35:45 +00:00
|
|
|
packages:
|
2019-04-13 12:16:54 +00:00
|
|
|
- libssl1.1
|
2019-08-25 08:49:18 +00:00
|
|
|
env: COMPILER=gcc-5 KVER=4.19.67
|
2019-04-05 22:35:45 +00:00
|
|
|
- compiler: gcc
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
2019-04-13 12:16:54 +00:00
|
|
|
- sourceline: 'ppa:ondrej/nginx-mainline'
|
2019-04-05 22:35:45 +00:00
|
|
|
packages:
|
2019-05-24 16:54:44 +00:00
|
|
|
- gcc-6
|
2019-04-13 12:16:54 +00:00
|
|
|
- libssl1.1
|
2019-08-25 08:49:18 +00:00
|
|
|
env: COMPILER=gcc-6 KVER=4.19.67
|
2019-04-05 22:35:45 +00:00
|
|
|
- compiler: gcc
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
2019-04-13 12:16:54 +00:00
|
|
|
- sourceline: 'ppa:ondrej/nginx-mainline'
|
2019-05-24 16:54:44 +00:00
|
|
|
packages:
|
2019-04-13 12:16:54 +00:00
|
|
|
- gcc-7
|
|
|
|
- libssl1.1
|
2019-08-25 08:49:18 +00:00
|
|
|
env: COMPILER=gcc-7 KVER=4.19.67
|