Skip to content

Commit

Permalink
Disable GPU-dependent actions
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-veselov committed Aug 8, 2024
1 parent f0ceeb1 commit 8256bac
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions .github/workflows/cmake-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,18 @@ jobs:
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

- name: Run Tests
working-directory: ${{github.workspace}}/build
run: ctest -C ${{env.BUILD_TYPE}}

- name: Run Benchmarks
working-directory: ${{github.workspace}}/build/${{env.BUILD_TYPE}}
run: .\Benchmarks.exe > benchmarks.txt

- name: Upload Benchmark Results
uses: actions/upload-artifact@v4
with:
name: Benchmarks
path: ${{github.workspace}}/build/${{env.BUILD_TYPE}}/benchmarks.txt
# Temporarily disabled since GPU is not available on github.actions
#
# - name: Run Tests
# working-directory: ${{github.workspace}}/build
# run: ctest -C ${{env.BUILD_TYPE}}
#
# - name: Run Benchmarks
# working-directory: ${{github.workspace}}/build/${{env.BUILD_TYPE}}
# run: .\Benchmarks.exe > benchmarks.txt
#
# - name: Upload Benchmark Results
# uses: actions/upload-artifact@v4
# with:
# name: Benchmarks
# path: ${{github.workspace}}/build/${{env.BUILD_TYPE}}/benchmarks.txt

0 comments on commit 8256bac

Please sign in to comment.