test_multiprocess.sh: bad argument count #21
Workflow file for this run
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: Build with CMake | |
| on: | |
| push: | |
| branches: [master, main] | |
| pull_request: | |
| branches: [master, main] | |
| jobs: | |
| cmake: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Create build directory | |
| run: mkdir build | |
| - name: Build project | |
| run: cd build && cmake -DENABLE_DEBUG=ON .. | |
| - name: Install zeugl | |
| run: sudo make -C build install | |
| - name: Test zeugl | |
| run: LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib" zeugl -v |