Skip to content

Commit

Permalink
CICD: Don't install pycddlib on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
stephane-caron committed Dec 20, 2024
1 parent ac5ef7c commit ed9e517
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ jobs:
environment-name: pypoman_test_env
create-args: >-
python=${{ matrix.python-version }}
cddlib
cvxopt>=1.2.6
matplotlib>=3.3.4
numpy>=1.15.4
Expand All @@ -113,8 +112,10 @@ jobs:
cache-environment: true
post-cleanup: 'all'

- name: "Install pycddlib using pip"
- name: "Install cdd and pycddlib"
if: ${{ matrix.os != 'windows-latest' }}
run: |
conda install cddlib
pip install pycddlib
- name: "Run unit tests"
Expand Down

0 comments on commit ed9e517

Please sign in to comment.