Skip to content

ci: Try out windows.2022.small for windows testing #997

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 6, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/check-quickstartmodule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ jobs:
strategy:
fail-fast: false
matrix:
rel_type: [ "latest_stable", "latest_lts" ]
acc_type: [ "cuda11.x", "cuda10.2", "accnone" ]
py_vers: [ "3.7", "3.8", "3.9" ]
os: ["ubuntu-18.04", "macos-latest", "windows.4xlarge"]
rel_type: ["latest_stable", "latest_lts"]
acc_type: ["cuda11.x", "cuda10.2", "accnone"]
py_vers: ["3.7", "3.8", "3.9"]
os: ["ubuntu-18.04", "macos-latest", "windows.2022.small"]
# We don't actively build for CUDA 10.2 on windows so we should
# skip it in our test matrix for pip install
exclude:
- os: "windows.4xlarge"
- os: "windows.2022.small"
acc_type: "cuda10.2"
env:
TEST_ACC: ${{ matrix.acc_type }}
Expand Down Expand Up @@ -90,9 +90,9 @@ jobs:
strategy:
fail-fast: false
matrix:
rel_type: [ "latest_stable" ]
acc_type: [ "cuda11.x", "cuda10.2", "accnone" ]
py_vers: [ "3.7", "3.8", "3.9" ]
rel_type: ["latest_stable"]
acc_type: ["cuda11.x", "cuda10.2", "accnone"]
py_vers: ["3.7", "3.8", "3.9"]
os: ["ubuntu-18.04", "macos-latest"]
env:
TEST_ACC: ${{ matrix.acc_type }}
Expand Down