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

GitHub Actions: Upgrade to windows-2022 #3208

Merged
merged 1 commit into from
Mar 30, 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/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
setup:
runs-on: windows-2016
runs-on: windows-2022
name: Download testing bundle
steps:
- name: 'Wait for Hydra build'
Expand All @@ -38,7 +38,7 @@ jobs:
cardano-wallet-core-test-unit:
name: 'cardano-wallet-core:unit'
needs: setup
runs-on: windows-2016
runs-on: windows-2022
steps:
- uses: actions/download-artifact@v2
with:
Expand All @@ -48,7 +48,7 @@ jobs:
cardano-wallet-test-unit:
name: 'cardano-wallet:unit'
needs: setup
runs-on: windows-2016
runs-on: windows-2022
steps:
- uses: actions/download-artifact@v2
with:
Expand All @@ -58,7 +58,7 @@ jobs:
cardano-wallet-cli-test-unit:
name: 'cardano-wallet-cli:unit'
needs: setup
runs-on: windows-2016
runs-on: windows-2022
steps:
- uses: actions/download-artifact@v2
with:
Expand All @@ -68,7 +68,7 @@ jobs:
text-class-test-unit:
name: 'test-class:unit'
needs: setup
runs-on: windows-2016
runs-on: windows-2022
steps:
- uses: actions/download-artifact@v2
with:
Expand All @@ -78,7 +78,7 @@ jobs:
cardano-wallet-launcher-test-unit:
name: 'cardano-wallet-launcher:unit'
needs: setup
runs-on: windows-2016
runs-on: windows-2022
steps:
- uses: actions/download-artifact@v2
with:
Expand All @@ -90,7 +90,7 @@ jobs:
name: 'cardano-wallet:integration'
needs: setup
if: ${{ startsWith(github.ref, 'refs/heads/bors/') || startsWith(github.ref, 'refs/heads/release/v') }}
runs-on: windows-2016
runs-on: windows-2022
steps:
- uses: actions/download-artifact@v2
with:
Expand All @@ -100,7 +100,7 @@ jobs:

finish:
name: Finish
runs-on: windows-2016
runs-on: windows-2022
if: always()
needs:
- cardano-wallet-core-test-unit
Expand Down