diff --git a/.github/workflows/test-build-prs.yaml b/.github/workflows/test-build-prs.yaml index b71c5fc0..7a13b251 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 3a3954cd..70751666 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", cwd=build_dir) + run("cmake --build . --config Release -j2 --target pdal-python", cwd=build_dir) def vcpkg_export(): if not os.path.exists("vcpkg"):