A bit of cmake update with a dev folder #1227
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: Windows | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| WindowsRun: | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: Jimver/[email protected] | |
| id: cuda-toolkit | |
| with: | |
| cuda: '12.4.0' | |
| linux-local-args: '["--toolkit"]' | |
| use-local-cache: false | |
| use-github-cache: false | |
| - run: nvcc -V | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - 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 -T Test -C Release --output-on-failure | |
| - run: echo "This job's status is ${{ job.status }}." |