Revert "wifi: iwlwifi: be less noisy if the NIC is dead in S3" #143
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build kernel | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
env: | |
KBUILD_BUILD_USER: deepin-kernel-sig | |
KBUILD_BUILD_HOST: deepin-kernel-builder | |
email: [email protected] | |
permissions: | |
pull-requests: read | |
jobs: | |
build-x86-kernel: | |
runs-on: [self-hosted, linux, x64] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Install Deps" | |
run: | | |
git config --global user.email $email | |
git config --global user.name $KBUILD_BUILD_USER | |
- name: "Compile kernel" | |
run: | | |
# .config | |
make deepin_x86_desktop_defconfig | |
make -j$(nproc) | |
build-arm64-kernel: | |
runs-on: [self-hosted, linux, ARM64] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Install Deps" | |
run: | | |
git config --global user.email $email | |
git config --global user.name $KBUILD_BUILD_USER | |
- name: "Compile kernel" | |
run: | | |
# .config | |
make deepin_arm64_desktop_defconfig | |
make -j$(nproc) |