1
0
mirror of https://github.com/aircrack-ng/rtl8812au.git synced 2024-09-19 20:50:41 +00:00

Merge pull request #622 from CGarces/patch-1

Update Travis CI configuration
This commit is contained in:
Christian Bremvåg 2020-04-26 01:58:26 +02:00 committed by GitHub
commit 64ba0b538c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,13 @@
language: c language: c
compiler: gcc compiler: gcc
sudo: required
dist: bionic dist: bionic
os: linux
before_install: before_install:
- export ALL_DEB=$(wget --quiet -O - ${KERNEL_URL}v${KVER}/ | grep -o 'href=".*"' | grep -m1 all | cut -d '"' -f 2) - export KERNEL_URL_DETAILS=$(wget --quiet -O - ${KERNEL_URL}v${KVER}/ | grep -A8 'Build for amd64')
- export ALL_DEB=$(echo "$KERNEL_URL_DETAILS" | grep -m1 'all.deb' | cut -d '"' -f 2)
- export KVER_BUILD=$(echo $ALL_DEB | cut -d '_' -f 1 | cut -c15-) - 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}/$(echo "$KERNEL_URL_DETAILS" | grep -m1 'amd64.deb' | cut -d '"' -f 2)
- wget ${KERNEL_URL}v${KVER}/$ALL_DEB - wget ${KERNEL_URL}v${KVER}/$ALL_DEB
- sudo dpkg -i *.deb - sudo dpkg -i *.deb
@ -14,53 +15,48 @@ script:
- make CC=$COMPILER KVER=$KVER_BUILD-generic - make CC=$COMPILER KVER=$KVER_BUILD-generic
env: env:
global: global:
- KERNEL_URL=http://kernel.ubuntu.com/~kernel-ppa/mainline/ - KERNEL_URL=https://kernel.ubuntu.com/~kernel-ppa/mainline/
matrix: addons:
apt:
packages:
#Force update to GCC-7.5 in order to compile Kernels >= 5.4.
- gcc-7
cache:
- ccache: true
jobs:
include: include:
- compiler: gcc - addons:
addons:
apt: apt:
sources: sources:
- sourceline: "ppa:ubuntu-toolchain-r/test" - sourceline: "ppa:ubuntu-toolchain-r/test"
packages: packages:
- gcc-9 - gcc-9
env: COMPILER=gcc-9 KVER=5.6-rc5 env: COMPILER=gcc-9 KVER=$(curl -s https://www.kernel.org/releases.json | grep 'mainline' -B1 | head -1 | cut -d'"' -f4)
- compiler: gcc - addons:
addons:
apt: apt:
packages: packages:
- gcc-8 - gcc-8
env: COMPILER=gcc-8 KVER=5.6-rc5 env: COMPILER=gcc-8 KVER=$(curl -s https://www.kernel.org/releases.json | grep 'mainline' -B1 | head -1 | cut -d'"' -f4)
- compiler: gcc
env: COMPILER=gcc-7 KVER=5.6-rc5 - env: COMPILER=gcc-7 KVER=$(curl -s https://www.kernel.org/releases.json | grep 'mainline' -B1 | head -1 | cut -d'"' -f4)
- compiler: gcc - env: COMPILER=gcc-7 KVER=$(curl -s https://www.kernel.org/releases.json | grep -A1 'latest_stable' | tail -1 | cut -d'"' -f4)
addons: - env: COMPILER=gcc-7 KVER=5.5.18
#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:
apt: apt:
packages: packages:
- gcc-6 - linux-headers-4.15.0-20-generic
env: COMPILER=gcc-6 KVER=5.6-rc5 #Use the kernel headers from apt instead of download it from an external source
- compiler: gcc before_install: true
addons: env: COMPILER=gcc-7 $KVER_BUILD=4.15.0-20
apt:
sources:
- sourceline: "ppa:ubuntu-toolchain-r/test"
packages:
- gcc-9
env: COMPILER=gcc-9 KVER=4.19.93
- compiler: gcc
addons:
apt:
packages:
- gcc-8
env: COMPILER=gcc-8 KVER=4.19.93
- compiler: gcc
env: COMPILER=gcc-7 KVER=4.19.93
- compiler: gcc
addons:
apt:
packages:
- gcc-6
env: COMPILER=gcc-6 KVER=4.19.93
- compiler: gcc
env: COMPILER=gcc-7 KVER=4.15.18