Update README with Godbolt link and demo file instructions #1715
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: Ubuntu-CI | |
| 'on': | |
| - push | |
| - pull_request | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| name: ubuntu-gcc | |
| runs-on: ubuntu-latest | |
| env: | |
| CC: gcc | |
| CXX: g++ | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Build and Test | |
| run: | | |
| mkdir build | |
| cd build | |
| cmake -DCMAKE_INSTALL_PREFIX:PATH=destination -DENABLE_ROARING_TESTS=ON -DROARING_UNSAFE_FROZEN_TESTS=ON .. | |
| cmake --build . | |
| ctest . --output-on-failure | |
| cmake --install . | |
| cd ../tests/installation/find && mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX:PATH=../../../build/destination .. && cmake --build . | |
| - name: Build and Test Debug | |
| run: | | |
| mkdir builddebug | |
| cd builddebug | |
| cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX:PATH=destination -DENABLE_ROARING_TESTS=ON -DROARING_UNSAFE_FROZEN_TESTS=ON .. | |
| cmake --build . | |
| ctest . --output-on-failure | |
| cmake --install . | |
| cd ../tests/installation/find && mkdir builddebug && cd builddebug && cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX:PATH=../../../build/destination .. && cmake --build . |