Skip to content

Commit

Permalink
Update cmake build
Browse files Browse the repository at this point in the history
  • Loading branch information
jchen351 committed Feb 17, 2024
1 parent 1742305 commit ed0c934
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/win-cpu-x64-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Build with CMake
run: |
cmake -G "Visual Studio 17 2022" -A x64 -S . -B build -DCMAKE_BUILD_TYPE=Release -DUSE_CUDA=OFF
cmake --build . --config Release --parallel
cmake --build build --config Release --parallel
- name: Verify Build Artifacts
if: always()
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/win-gpu-x64-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ jobs:
- name: Build with CMake
run: |
cmake -G "Visual Studio 17 2022" -S . -B build -A x64 -T cuda=${{ env.cuda_dir }}\\v${{ env.cuda_version }} .. -DCMAKE_BUILD_TYPE=Release -DUSE_CUDA=TRUE
cmake -G "Visual Studio 17 2022" -S . -B build -A x64 -T cuda=${{ env.cuda_dir }}\\v${{ env.cuda_version }} -DCMAKE_BUILD_TYPE=Release -DUSE_CUDA=TRUE
cmake --build build --config Release --parallel
- name: Verify Build Artifacts
if: always()
continue-on-error: true
run: |
Get-ChildItem -Path $env:GITHUB_WORKSPACE\build\ -Recurse
Get-ChildItem -Path $env:GITHUB_WORKSPACE\build\test\Release -Recurse
- name: Run tests
run: |
Expand Down

0 comments on commit ed0c934

Please sign in to comment.