Replace MD5-based file creation tests with structural output validation #82
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: OpenVDB module | |
| on: | |
| push: | |
| branches: [ "master", "develop" ] | |
| pull_request: | |
| branches: [ "master", "develop" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt update | |
| sudo apt install -y \ | |
| build-essential \ | |
| cmake \ | |
| libglm-dev \ | |
| libtclap-dev \ | |
| libboost-all-dev \ | |
| libopenvdb-dev \ | |
| libtbb-dev \ | |
| libcppunit-dev \ | |
| libeigen3-dev \ | |
| liblzma-dev \ | |
| zlib1g-dev \ | |
| libbz2-dev \ | |
| libssl-dev \ | |
| pkg-config | |
| - name: Configure CMake | |
| run: cmake -S src -B build -DMOD_OPENVDB=ON | |
| - name: Build | |
| run: cmake --build build --parallel | |
| - name: Run unit tests | |
| run: ctest --test-dir build --output-on-failure |