Skip to content

Commit

Permalink
CI: more OS testing (#1211)
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda authored Sep 12, 2022
1 parent 19355a9 commit 5bc828d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_install-pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macOS-11 , windows-2022]
os: [ubuntu-20.04, ubuntu-22.04, macOS-11, macOS-12, windows-2022]
python-version: [3.8]
timeout-minutes: 10

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ci_integrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@ jobs:
requires: ['oldest', 'latest']
exclude:
- {python-version: '3.7', requires: 'latest'}
- {python-version: '3.9', requires: 'oldest'}
- {python-version: '3.10', requires: 'oldest'}
- {python-version: '3.10', os: 'windows-2022'} # todo: https://discuss.pytorch.org/t/numpy-is-not-available-error/146192
- {python-version: '3.10', os: 'windows'} # todo: https://discuss.pytorch.org/t/numpy-is-not-available-error/146192
include:
- {python-version: '3.10', requires: 'latest', os: 'ubuntu-22.04'}
- {python-version: '3.10', requires: 'latest', os: 'macOS-12'}
env:
PYTEST_ARTEFACT: test-results-${{ matrix.os }}-py${{ matrix.python-version }}-${{ matrix.requires }}.xml
PYTORCH_URL: https://download.pytorch.org/whl/cpu/torch_stable.html
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/ci_test-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ jobs:
exclude:
- {python-version: '3.7', requires: 'latest'}
- {python-version: '3.10', requires: 'oldest'}
- {python-version: '3.10', os: 'windows-2022'} # todo: https://discuss.pytorch.org/t/numpy-is-not-available-error/146192
- {python-version: '3.10', os: 'windows'} # todo: https://discuss.pytorch.org/t/numpy-is-not-available-error/146192
include:
- {python-version: '3.10', requires: 'latest', os: 'ubuntu-22.04'}
- {python-version: '3.10', requires: 'latest', os: 'macOS-12'}
env:
PYTEST_ARTEFACT: test-results-${{ matrix.os }}-py${{ matrix.python-version }}-${{ matrix.requires }}.xml
PYTORCH_URL: https://download.pytorch.org/whl/cpu/torch_stable.html
Expand Down

0 comments on commit 5bc828d

Please sign in to comment.