diff --git a/.github/workflows/cmake-windows.yml b/.github/workflows/cmake-windows.yml index 72b2262..c80e157 100644 --- a/.github/workflows/cmake-windows.yml +++ b/.github/workflows/cmake-windows.yml @@ -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 \ No newline at end of file + # 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 \ No newline at end of file