mirror of
https://github.com/Mange/rtl8192eu-linux-driver
synced 2024-11-01 03:05:34 +00:00
80a0cb2c1a
This commit adds support for kernel 4.15, which changed the timer interface.
Fetch from 8c3acf9275
73 lines
1.8 KiB
YAML
73 lines
1.8 KiB
YAML
language: c
|
|
compiler: gcc
|
|
sudo: required
|
|
|
|
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:
|
|
- gcc --version
|
|
- 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:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- gcc-5
|
|
- libelf-dev
|
|
env: COMPILER=gcc-5 KVER=4.15-rc6
|
|
- compiler: gcc
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- gcc-6
|
|
- libelf-dev
|
|
env: COMPILER=gcc-6 KVER=4.15-rc6
|
|
- compiler: gcc
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- gcc-7
|
|
- libelf-dev
|
|
env: COMPILER=gcc-7 KVER=4.15-rc6
|
|
- compiler: gcc
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- gcc-5
|
|
env: COMPILER=gcc-5 KVER=4.4.97
|
|
- compiler: gcc
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- gcc-4.9
|
|
env: COMPILER=gcc-4.9 KVER=3.16.50
|
|
- compiler: gcc
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- gcc-5
|
|
env: COMPILER=gcc-5 KVER=3.14.79
|