2019-04-05 22:35:45 +00:00
language : c
compiler : gcc
2020-01-05 18:35:29 +00:00
dist : bionic
2020-04-19 14:25:53 +00:00
os : linux
2019-04-05 22:35:45 +00:00
before_install :
2020-06-15 20:52:45 +00:00
- export KERNEL_URL_DETAILS=$(wget --quiet -O - ${KERNEL_URL}v${KVER}/ | grep -A8 'Build for amd64\|Test amd64')
2020-04-19 14:25:53 +00:00
- export ALL_DEB=$(echo "$KERNEL_URL_DETAILS" | grep -m1 'all.deb' | cut -d '"' -f 2)
2020-06-15 20:52:45 +00:00
- export KVER_BUILD=$(echo $ALL_DEB | cut -d '_' -f 2 | rev | cut -c14- | rev)
2020-04-19 14:25:53 +00:00
- wget ${KERNEL_URL}v${KVER}/$(echo "$KERNEL_URL_DETAILS" | grep -m1 'amd64.deb' | cut -d '"' -f 2)
2019-04-05 22:35:45 +00:00
- wget ${KERNEL_URL}v${KVER}/$ALL_DEB
- sudo dpkg -i *.deb
script :
- make CC=$COMPILER KVER=$KVER_BUILD-generic
env :
global :
2020-04-19 14:25:53 +00:00
- KERNEL_URL=https://kernel.ubuntu.com/~kernel-ppa/mainline/
2019-04-05 22:35:45 +00:00
2020-04-19 14:25:53 +00:00
addons :
apt :
packages :
#Force update to GCC-7.5 in order to compile Kernels >= 5.4.
- gcc-7
cache :
- ccache : true
jobs :
2019-04-05 22:35:45 +00:00
include :
2020-04-19 14:25:53 +00:00
- addons :
2019-04-05 22:35:45 +00:00
apt :
sources :
2020-01-05 18:35:29 +00:00
- sourceline : "ppa:ubuntu-toolchain-r/test"
2020-07-12 01:35:23 +00:00
packages :
- gcc-10
env : COMPILER=gcc-10 KVER=$(curl -s https://www.kernel.org/releases.json | grep 'mainline' -B1 | head -1 | cut -d'"' -f4)
2019-04-05 22:35:45 +00:00
packages :
2020-01-05 00:44:29 +00:00
- gcc-9
2020-04-19 14:25:53 +00:00
env : COMPILER=gcc-9 KVER=$(curl -s https://www.kernel.org/releases.json | grep 'mainline' -B1 | head -1 | cut -d'"' -f4)
- addons :
2019-04-05 22:35:45 +00:00
apt :
packages :
2020-01-05 18:35:29 +00:00
- gcc-8
2020-04-19 14:25:53 +00:00
env : COMPILER=gcc-8 KVER=$(curl -s https://www.kernel.org/releases.json | grep 'mainline' -B1 | head -1 | cut -d'"' -f4)
- env : COMPILER=gcc-7 KVER=$(curl -s https://www.kernel.org/releases.json | grep 'mainline' -B1 | head -1 | cut -d'"' -f4)
- env : COMPILER=gcc-7 KVER=$(curl -s https://www.kernel.org/releases.json | grep -A1 'latest_stable' | tail -1 | cut -d'"' -f4)
#Kernels 5.4 with minor versions > 28 are failing on amd64. Not upgrade the minor version without check https://kernel.ubuntu.com/~kernel-ppa/mainline/
- env : COMPILER=gcc-7 KVER=5.4.28
- env : COMPILER=gcc-7 KVER=4.19.116
- env : COMPILER=gcc-7 KVER=4.14.176
- env : COMPILER=gcc-7 KVER=4.9.219
- env : COMPILER=gcc-7 KVER=4.4.219
#Version 4.15.x requested to test Ubuntu 18.04 LTS version
#TODO identify 4.15.x version dynamically instead of hardcode it.
- addons :
2019-09-22 14:47:26 +00:00
apt :
packages :
2020-04-19 14:25:53 +00:00
- linux-headers-4.15.0-20-generic
#Use the kernel headers from apt instead of download it from an external source
before_install : true
env : COMPILER=gcc-7 $KVER_BUILD=4.15.0-20