Portability and CMake support #237
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: Test install | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'src/**' | |
| - 'include/**' | |
| - 'tools/src/**' | |
| - 'Makefile' | |
| - '*.mk' | |
| - '.github/workflows/install.yml' | |
| pull_request: | |
| paths: | |
| - 'src/**' | |
| - 'include/**' | |
| - 'tools/src/**' | |
| - 'Makefile' | |
| - '*.mk' | |
| - '.github/workflows/install.yml' | |
| jobs: | |
| install: | |
| runs-on: ubuntu-latest | |
| env: | |
| CC: gcc | |
| steps: | |
| - name: install doxygen | |
| run: sudo apt-get install doxygen | |
| - uses: actions/checkout@v6 | |
| - name: Build distro | |
| run: make distro | |
| - name: Install to default location | |
| run: sudo make install | |