Skip to content
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

Added windows-2022 to matrix os options #216

Merged
merged 1 commit into from
Dec 31, 2021
Merged
Show file tree
Hide file tree
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: 16 additions & 0 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,21 @@ jobs:
- ubuntu-20.04
- macos-11
- windows-2019
- windows-2022

runs-on: ${{ matrix.os }}

steps:
- name: Checkout
uses: actions/checkout@v2

# Workaround as the newest version of MSVC does not support this latest version of CUDA, workaroud for Windows 11/Windows Server 2022.
- name: Add MSVC compiler
uses: ilammy/msvc-dev-cmd@v1
with:
toolset: 14.29
if: matrix.os == 'windows-2022'

- name: Rust toolchain
uses: actions-rs/toolchain@v1
# TODO: Below can be removed when https://github.com/actions-rs/toolchain/issues/126 is resolved
Expand Down Expand Up @@ -100,13 +108,21 @@ jobs:
- ubuntu-20.04
- macos-11
- windows-2019
- windows-2022

runs-on: ${{ matrix.os }}

steps:
- name: Checkout
uses: actions/checkout@v2

# Workaround as the newest version of MSVC does not support this latest version of CUDA, workaroud for Windows 11/Windows Server 2022.
- name: Add MSVC compiler
uses: ilammy/msvc-dev-cmd@v1
with:
toolset: 14.29
if: matrix.os == 'windows-2022'

- name: Rust toolchain
uses: actions-rs/toolchain@v1
# TODO: Below can be removed when https://github.com/actions-rs/toolchain/issues/126 is resolved
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/snapshot-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,21 @@ jobs:
- ubuntu-20.04
- macos-11
- windows-2019
- windows-2022

runs-on: ${{ matrix.os }}

steps:
- name: Checkout
uses: actions/checkout@v2

# Workaround as the newest version of MSVC does not support this latest version of CUDA, workaroud for Windows 11/Windows Server 2022.
- name: Add MSVC compiler
uses: ilammy/msvc-dev-cmd@v1
with:
toolset: 14.29
if: matrix.os == 'windows-2022'

- name: Download testnet chain specifictions from artifacts
uses: actions/download-artifact@v2
with:
Expand Down