1
0
mirror of https://github.com/aircrack-ng/rtl8812au.git synced 2024-11-22 21:34:37 +00:00

Fix libc6 dependency 2.33

Fix 18.04 build over default kernel
This commit is contained in:
Carlos Garcés 2021-05-11 23:23:48 +02:00 committed by Carlos
parent 3a64331a1c
commit 20f810c403

View File

@ -34,7 +34,7 @@ jobs:
include: include:
#Version 4.15.x requested to test Ubuntu 18.04 LTS version #Version 4.15.x requested to test Ubuntu 18.04 LTS version
- os: ubuntu-18.04 - os: ubuntu-18.04
version: 4.15.0-20-generic version: $(uname -r)
use_apt: true use_apt: true
steps: steps:
@ -51,13 +51,14 @@ jobs:
[ -z "$AMD64_DEB" ] && exit 2 [ -z "$AMD64_DEB" ] && exit 2
wget -nv ${KERNEL_URL}v${VERSION}/$AMD64_DEB wget -nv ${KERNEL_URL}v${VERSION}/$AMD64_DEB
wget -nv ${KERNEL_URL}v${VERSION}/$ALL_DEB wget -nv ${KERNEL_URL}v${VERSION}/$ALL_DEB
wget -nv http://mirrors.kernel.org/ubuntu/pool/main/g/glibc/libc6_2.33-0ubuntu5_amd64.deb
sudo dpkg --force-all -i *.deb sudo dpkg --force-all -i *.deb
echo "KVER=$(echo $ALL_DEB | cut -d '_' -f 2 | rev | cut -c14- | rev)-generic" >> $GITHUB_ENV echo "KVER=$(echo $ALL_DEB | cut -d '_' -f 2 | rev | cut -c14- | rev)-generic" >> $GITHUB_ENV
- name: apt-linux-headers - name: apt-linux-headers
if: ${{ matrix.use_apt }} if: ${{ matrix.use_apt }}
run: | run: |
sudo apt-get install linux-headers-${{matrix.version }} sudo apt-get install linux-headers-$(uname -r)
echo "KVER=${{matrix.version }}" >> $GITHUB_ENV echo "KVER=${{matrix.version }}" >> $GITHUB_ENV
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: build - name: build
run: make KVER=$KVER run: make KVER=$KVER