diff --git a/.github/workflows/test-build-prs.yaml b/.github/workflows/test-build-prs.yaml index 7a13b251..b71c5fc0 100644 --- a/.github/workflows/test-build-prs.yaml +++ b/.github/workflows/test-build-prs.yaml @@ -58,10 +58,10 @@ jobs: with: python-version: '3.12.10' architecture: 'x64' - # - uses: Jimver/cuda-toolkit@v0.2.24 - # id: cuda-toolkit - # with: - # cuda: '12.8.1' + - uses: Jimver/cuda-toolkit@v0.2.24 + id: cuda-toolkit + with: + cuda: '12.8.1' - name: Setup cmake uses: jwlawson/actions-setup-cmake@v1.13 with: diff --git a/configure.py b/configure.py index 3ec39d11..bb00edca 100644 --- a/configure.py +++ b/configure.py @@ -104,7 +104,7 @@ def build(): toolchain_file = os.path.join(os.getcwd(), "vcpkg", "scripts", "buildsystems", "vcpkg.cmake") run("cmake .. -DCMAKE_TOOLCHAIN_FILE=\"%s\"" % toolchain_file, cwd=build_dir) - run("cmake --build . --config Release -j2 --target ceres", cwd=build_dir) + run("cmake --build . --config Release -j2", cwd=build_dir) def vcpkg_export(): if not os.path.exists("vcpkg"):