Skip to content

Commit

Permalink
ci: Don't install coal before running tests on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisv committed Nov 21, 2024
1 parent 2beb3f1 commit c0d214e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/windows-conda-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,14 @@ 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
ctest --output-on-failure -C Release
if errorlevel 1 exit 1
:: Test Python import
cd ..
python -c "import coal"
if errorlevel 1 exit 1
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/windows-conda-v142.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,14 @@ 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
ctest --output-on-failure -C Release
if errorlevel 1 exit 1
:: Test Python import
cd ..
python -c "import coal"
if errorlevel 1 exit 1
Expand Down

0 comments on commit c0d214e

Please sign in to comment.