Fix typo that broke restoration of CMAKE_FIND_LIBRARY_SUFFIXES #211
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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - 0.6.x | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup | |
| run: | | |
| sudo apt-get install cmake liblzma-dev | |
| - name: Build | |
| run: | | |
| mkdir build | |
| cd build | |
| cmake -DDEBIAN=1 -DMULTI_SEMANTICS=1 -DCMAKE_VERBOSE_MAKEFILE=TRUE .. | |
| make | |
| - name: Test | |
| run: | | |
| cd build | |
| make test |