Skip to content

lib/cpuinfo: Increase the file descriptors limit to handle more CPUs #158

lib/cpuinfo: Increase the file descriptors limit to handle more CPUs

lib/cpuinfo: Increase the file descriptors limit to handle more CPUs #158

Workflow file for this run

name: github/style
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt install clang-format-11 codespell wget git python3-pip
python3 -m pip install --upgrade pip
pip install pipenv
make setup-dev
wget -P /tmp/ https://github.com/torvalds/linux/184b8f7f91ca7938c09533df83ce84817e682975/scripts/checkpatch.pl && chmod a+x /tmp/checkpatch.pl
wget -P /tmp/ https://github.com/torvalds/linux/184b8f7f91ca7938c09533df83ce84817e682975/scripts/spelling.txt
wget -P /tmp/ https://github.com/torvalds/linux/184b8f7f91ca7938c09533df83ce84817e682975/scripts/const_structs.checkpatch
- name: Style check
run: |
make style CLANGFORMAT=clang-format-11 CHECKPATCH=/tmp/checkpatch.pl