Uruchomienie modułu TUI #176
This file contains hidden or 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: Compile after push | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths-ignore: | |
| - '.github/**' | |
| - 'picture/**' | |
| - 'program/**' | |
| - '*.md' | |
| - '**/.autoopen-text' | |
| - '.autoopen-text' | |
| - '.gitignore' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Get number of CPU cores | |
| uses: SimenB/github-actions-cpu-cores@v2 | |
| id: cpu-cores | |
| - uses: actions/checkout@v5 | |
| - name: packages install | |
| run: sudo apt-get update; sudo apt-get install libtool-bin libssl-dev libssl-doc libwayland-dev wayland-protocols libcap-dev libncurses-dev manpages-dev ncurses-doc; sudo mandb | |
| - name: make | |
| run: make -j${{ steps.cpu-cores.outputs.count }} build |