Skip to content

sync to torvalds/linux@3efc57369a0ce8f76bf0804f7e673982384e4ac9 #45

sync to torvalds/linux@3efc57369a0ce8f76bf0804f7e673982384e4ac9

sync to torvalds/linux@3efc57369a0ce8f76bf0804f7e673982384e4ac9 #45

Workflow file for this run

name: build menuconfig
on:
push:
# Sequence of patterns matched against refs/heads
branches:
- main
# Sequence of patterns matched against refs/tags
tags:
- v*
paths-ignore:
- .gitpicker.json
- Kconfig
- COPYING
- '**/README.md'
- '**/.gitignore'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install deps and build
run: |
sudo chmod 777 ./install_deps.sh
bash ./install_deps.sh
mkdir build && cd build && cmake .. && make menuconfig