feat(pj_base): pj.data_processors.v1 — data-only SDK service for plugin-created transforms #104
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: macOS CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| workflow_dispatch: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| if: github.event.pull_request.draft == false | |
| runs-on: macos-15-intel | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: conan-io/setup-conan@v1 | |
| with: | |
| cache_packages: true | |
| - name: Install cmake and ninja | |
| run: pip install cmake ninja | |
| - name: Conan install | |
| run: > | |
| conan install . --output-folder=build --build=missing | |
| -s build_type=RelWithDebInfo -s compiler.cppstd=20 | |
| -o "plotjuggler_sdk/*:with_tests=True" | |
| - name: Configure | |
| run: > | |
| cmake -S . -B build -G Ninja | |
| -DCMAKE_TOOLCHAIN_FILE=${{ github.workspace }}/build/conan_toolchain.cmake | |
| -DCMAKE_BUILD_TYPE=RelWithDebInfo | |
| - name: Build | |
| run: cmake --build build | |
| - name: Test | |
| env: | |
| QT_QPA_PLATFORM: offscreen | |
| run: ctest --test-dir build --output-on-failure |