Poprawki #186
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 update; sudo apt install manpages-dev libtool-bin libssl-dev libssl-doc libcap-dev libncurses-dev ncurses-doc libwayland-dev wayland-protocols; sudo mandb | |
| - name: make | |
| run: env H_ocq_C_consent=1 make -j${{ steps.cpu-cores.outputs.count }} build |