sync to p-ranav/argparse@9550b0a88c85120a0bf456af935eed2956c73340 #34
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 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 |