Implemented outputting to the nanoVDB file format. #432
Workflow file for this run
This file contains 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: Windows | |
on: | |
push: | |
branches: [main, develop] | |
pull_request: | |
branches: [main, develop] | |
workflow_dispatch: | |
jobs: | |
WindowsRun: | |
runs-on: windows-2019 | |
steps: | |
- uses: Jimver/cuda-toolkit@v0.2.7 | |
id: cuda-toolkit | |
with: | |
cuda: '11.7.0' | |
linux-local-args: '["--toolkit"]' | |
- run: nvcc -V | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Create build directory | |
run: mkdir ${{github.workspace}}/build | |
- name: Configure CMake | |
working-directory: ${{github.workspace}}/build | |
run: cmake ../ | |
- name: Run VS | |
run: cmake --build ${{github.workspace}}/build --clean-first --config Release -j 4 | |
- name: Run Test | |
working-directory: ${{github.workspace}}/build | |
run: ctest --no-compress-output --output-on-failure -T Test --build-config Release |