compilation fix #72
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
| #from https://github.com/Kitware/vtk-ci-example/blob/master/.github/workflows/ci.yml | |
| name: CI | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| push: | |
| branches: | |
| - master | |
| schedule: | |
| # every two months" | |
| - cron: '0 0 1 */2 *' | |
| jobs: | |
| build_and_test: | |
| if: github.event.pull_request.draft == false | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| version: [ v9.0, v9.1, v9.2, v9.3, v9.4, latest ] | |
| container: kitware/vtk-for-ci:${{ matrix.version }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| path: 'source' | |
| fetch-depth: 0 | |
| lfs: 'false' | |
| - name: Setup Directories | |
| working-directory: ${{github.workspace}} | |
| run: mkdir build | |
| - name: Configure | |
| working-directory: ${{github.workspace}}/build | |
| run: cmake -DCMAKE_PREFIX_PATH=/opt/vtk/install/ -DBUILD_TESTING=ON -DCMAKE_BUILD_TYPE=Release ../source | |
| - name: Build | |
| working-directory: ${{github.workspace}}/build | |
| run: cmake --build . --parallel 2 | |
| - name: Test | |
| working-directory: ${{github.workspace}}/build | |
| run: | | |
| export LD_LIBRARY_PATH=/opt/vtk/install/lib/:/opt/catalyst/install/lib/:$LD_LIBRARY_PATH | |
| bash ../source/test.sh |