Finalization #13
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: Shared Library Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build-shared: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Configure CMake | |
| env: | |
| CC: clang | |
| CXX: clang++ | |
| run: | | |
| cmake -B build \ | |
| -DBUILD_SHARED_LIBS=ON \ | |
| -DFTXUI_BUILD_EXAMPLES=ON \ | |
| -DFTXUI_BUILD_TESTS=OFF \ | |
| -DFTXUI_BUILD_DOCS=OFF | |
| - name: Build one example | |
| run: | | |
| cmake --build build --target ftxui_example_text |