docs: slim PLAN, bind v2.1 guidance for the autonomous campaign #110
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: macOS unit | |
| # adapted from: https://github.com/trase-cpp/trase/tree/master/.github/workflows | |
| on: | |
| push: | |
| branches: [develop, Claude] # TODO(release): remove temporary Claude trigger | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build-and-test: | |
| name: macOS unit | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| - name: Install dependencies | |
| run: | | |
| brew install ninja libomp | |
| brew link --force libomp | |
| - name: CMake configure (Release with HiGHS) | |
| run: | | |
| cmake --preset clang-macos -DDTWC_BUILD_TESTING=ON -DDTWC_ENABLE_HIGHS=ON | |
| - name: CMake build | |
| run: | | |
| cmake --build build --config Release --parallel | |
| - name: CMake test | |
| run: | | |
| ctest --test-dir build -j -C Release --output-on-failure |