Skip to content

Commit

Permalink
windows CI: try KMP_DUPLICATE_LIB_OK=True
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmgray committed Jun 12, 2024
1 parent 688bf95 commit ae4d98b
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,55 +16,59 @@ jobs:
strategy:
matrix:
testset: [matrix, tensor]
env: [base]
conda-env: [base]
os: [ubuntu-latest]
python-version: ['3.9', '3.10', '3.11', '3.12']
flaky: [false]

include:
- os: macos-latest
testset: matrix
env: base
conda-env: base
python-version: '3.11'
flaky: true

- os: macos-latest
testset: tensor
env: base
conda-env: base
python-version: '3.11'
flaky: false

- os: windows-latest
testset: matrix
env: base
conda-env: base
python-version: '3.11'
flaky: false
env:
KMP_DUPLICATE_LIB_OK: "True"

- os: windows-latest
testset: tensor
env: base
conda-env: base
python-version: '3.11'
flaky: false
env:
KMP_DUPLICATE_LIB_OK: "True"

- env: torch
- conda-env: torch
testset: tensor
os: ubuntu-latest
python-version: '3.11'
flaky: false

- env: jax
- conda-env: jax
testset: tensor
os: ubuntu-latest
python-version: '3.11'
flaky: false

- env: tensorflow
- conda-env: tensorflow
testset: tensor
os: ubuntu-latest
python-version: '3.11'
flaky: false

- env: slepc
- conda-env: slepc
testset: matrix
os: ubuntu-latest
python-version: '3.11'
Expand All @@ -76,7 +80,7 @@ jobs:
- name: Install micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: ci/requirements/py-${{ matrix.env }}.yml
environment-file: ci/requirements/py-${{ matrix.conda-env }}.yml
environment-name: test-env
create-args: >-
python=${{ matrix.python-version }}
Expand Down

0 comments on commit ae4d98b

Please sign in to comment.