Fix RecoverParts transform order in public API (#99) #49
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: Build | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.config.os }} | |
| name: Build on ${{ matrix.config.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| config: | |
| - { os: "ubuntu-24.04", build-dir: "build-linux" } | |
| - { os: "ubuntu-24.04-arm", build-dir: "build-linux" } | |
| - { os: "ubuntu-22.04", build-dir: "build-linux" } | |
| - { os: "ubuntu-22.04-arm", build-dir: "build-linux" } | |
| - { os: "windows-2025", build-dir: "build-windows" } | |
| - { os: "macos-15", build-dir: "build-macos" } | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: "true" | |
| - name: Generate | |
| run: | | |
| cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded -DOPENVDB_CORE_SHARED=OFF -DTBB_TEST=OFF -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -B ${{ matrix.config.build-dir }} . | |
| - name: Build | |
| run: | | |
| cmake --build ${{ matrix.config.build-dir }} --target main --config Release --parallel 4 | |
| - name: List Build Results | |
| run: | | |
| ls ${{ matrix.config.build-dir }} | |
| - name: Upload Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.config.os }}-build-main | |
| path: | | |
| ./${{ matrix.config.build-dir }}/**/main | |
| ./${{ matrix.config.build-dir }}/**/main.exe |