diff --git a/.github/workflows/windows-conda-clang.yml b/.github/workflows/windows-conda-clang.yml index 7d7a8d87a..069ccd007 100644 --- a/.github/workflows/windows-conda-clang.yml +++ b/.github/workflows/windows-conda-clang.yml @@ -65,7 +65,7 @@ jobs: if errorlevel 1 exit 1 :: Build and Install - cmake --build . --config Release --target install + cmake --build . --config Release --target all if errorlevel 1 exit 1 :: Testing @@ -73,7 +73,6 @@ jobs: if errorlevel 1 exit 1 :: Test Python import - cd .. python -c "import coal" if errorlevel 1 exit 1 diff --git a/.github/workflows/windows-conda-v142.yml b/.github/workflows/windows-conda-v142.yml index e1191d014..d448007f8 100644 --- a/.github/workflows/windows-conda-v142.yml +++ b/.github/workflows/windows-conda-v142.yml @@ -62,7 +62,7 @@ jobs: if errorlevel 1 exit 1 :: Build and Install - cmake --build . --config Release --target install + cmake --build . --config Release --target all if errorlevel 1 exit 1 :: Testing @@ -70,7 +70,6 @@ jobs: if errorlevel 1 exit 1 :: Test Python import - cd .. python -c "import coal" if errorlevel 1 exit 1