[V4] Sketch of promise structure #980
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: Linux | |
| on: | |
| push: | |
| branches: ["modules"] | |
| pull_request: | |
| branches: ["modules"] | |
| workflow_dispatch: | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| preset: [ci-hardened, ci-release, ci-no-except-rtti] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Homebrew | |
| uses: Homebrew/actions/setup-homebrew@master | |
| - name: Install Dependencies | |
| run: brew install cmake ninja gcc binutils catch2 google-benchmark | |
| - name: Configure | |
| run: cmake --preset ${{ matrix.preset }} -DCMAKE_TOOLCHAIN_FILE=cmake/gcc-brew-toolchain.cmake | |
| - name: Build | |
| run: cmake --build --preset ${{ matrix.preset }} | |
| - name: Test | |
| run: ctest --preset ${{ matrix.preset }} |