Skip to content

sync to torvalds/linux@36c254515dc6592c44db77b84908358979dd6b50 #47

sync to torvalds/linux@36c254515dc6592c44db77b84908358979dd6b50

sync to torvalds/linux@36c254515dc6592c44db77b84908358979dd6b50 #47

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