mirror of
https://github.com/Mange/rtl8192eu-linux-driver
synced 2024-11-01 03:05:34 +00:00
Improved github actions
Added step to detect misuse of USB_VENDOR_ID_REALTEK Added check for duplicated USB IDs Check for .deb files before download it Move git checkout before build step
This commit is contained in:
parent
7e8858e0df
commit
d062e34d79
33
.github/workflows/build.yml
vendored
33
.github/workflows/build.yml
vendored
@ -3,40 +3,49 @@ name: Build
|
|||||||
on: [pull_request]
|
on: [pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
fetchKernelData:
|
|
||||||
|
commontasks:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
||||||
steps:
|
steps:
|
||||||
- id: set-matrix
|
- uses: actions/checkout@v2
|
||||||
|
- name: Avoid 0x0BDA
|
||||||
|
#Find devices that not use 0x0BDA instead of const USB_VENDOR_ID_REALTEK
|
||||||
|
run: grep -c -i "0x0BDA" os_dep/linux/usb_intf.c | grep -w 1
|
||||||
|
- name: Find duplicates
|
||||||
|
#Find devices that not use 0x0BDA instead of const USB_VENDOR_ID_REALTEK
|
||||||
|
run: grep -i "{USB_DEVICE(" os_dep/linux/usb_intf.c | cut -d ')' -f1 | sort | uniq -cd | wc -c | grep -w 0
|
||||||
|
- name: Get kernel matrix
|
||||||
|
id: set-matrix
|
||||||
run: |
|
run: |
|
||||||
JSON=$(curl https://www.kernel.org/releases.json)
|
JSON=$(curl -s https://www.kernel.org/releases.json)
|
||||||
VERSIONSARRAY=$(echo $JSON | jq -c '[.releases[] | {version: .version, moniker: .moniker} | select(.moniker != "linux-next") | .version]')
|
VERSIONSARRAY=$(echo $JSON | jq -c '[.releases[] | {version: .version, moniker: .moniker} | select(.moniker != "linux-next") | .version]')
|
||||||
echo ::set-output name=matrix::${VERSIONSARRAY}
|
echo ::set-output name=matrix::${VERSIONSARRAY}
|
||||||
|
|
||||||
build:
|
build:
|
||||||
needs: fetchKernelData
|
needs: commontasks
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
version: ${{fromJson(needs.fetchKernelData.outputs.matrix)}}
|
version: ${{fromJson(needs.commontasks.outputs.matrix)}}
|
||||||
#version: [4.9.248, 4.4.248]
|
#version: [4.9.248, 4.4.248]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- name: install deb packages
|
||||||
- name: download-Kernel
|
|
||||||
env:
|
env:
|
||||||
VERSION: ${{matrix.version }}
|
VERSION: ${{matrix.version }}
|
||||||
run: |
|
run: |
|
||||||
KERNEL_URL=https://kernel.ubuntu.com/~kernel-ppa/mainline/
|
KERNEL_URL=https://kernel.ubuntu.com/~kernel-ppa/mainline/
|
||||||
KERNEL_URL_DETAILS=$(wget --quiet -O - ${KERNEL_URL}v${VERSION}/ | grep -A8 "Build for amd64\|Test amd64")
|
KERNEL_URL_DETAILS=$(wget --quiet -O - ${KERNEL_URL}v${VERSION}/ | grep -A8 "Build for amd64\|Test amd64")
|
||||||
ALL_DEB=$(echo "$KERNEL_URL_DETAILS" | grep -m1 'all.deb' | cut -d '"' -f 2)
|
ALL_DEB=$(echo "$KERNEL_URL_DETAILS" | grep -m1 'all.deb' | cut -d '"' -f 2)
|
||||||
KVER=$(echo $ALL_DEB | cut -d '_' -f 2 | rev | cut -c14- | rev)-generic
|
AMD64_DEB=$(echo "$KERNEL_URL_DETAILS" | grep -m1 "amd64.deb" | cut -d '"' -f 2)
|
||||||
wget -nv ${KERNEL_URL}v${VERSION}/$(echo "$KERNEL_URL_DETAILS" | grep -m1 "amd64.deb" | cut -d '"' -f 2)
|
[ -z "$ALL_DEB" ] && exit 1
|
||||||
|
[ -z "$AMD64_DEB" ] && exit 2
|
||||||
|
wget -nv ${KERNEL_URL}v${VERSION}/$AMD64_DEB
|
||||||
wget -nv ${KERNEL_URL}v${VERSION}/$ALL_DEB
|
wget -nv ${KERNEL_URL}v${VERSION}/$ALL_DEB
|
||||||
sudo dpkg --force-all -i *.deb
|
sudo dpkg --force-all -i *.deb
|
||||||
sudo wget https://raw.githubusercontent.com/torvalds/linux/master/scripts/module.lds.S -O /usr/src/linux-headers-$KVER/scripts/module.lds
|
echo "KVER=$(echo $ALL_DEB | cut -d '_' -f 2 | rev | cut -c14- | rev)-generic" >> $GITHUB_ENV
|
||||||
sudo sed -i '$ d' /usr/src/linux-headers-$KVER/scripts/module.lds
|
- uses: actions/checkout@v2
|
||||||
echo "KVER=$KVER" >> $GITHUB_ENV
|
|
||||||
- name: build
|
- name: build
|
||||||
run: make KVER=$KVER
|
run: make KVER=$KVER
|
||||||
|
Loading…
Reference in New Issue
Block a user