Skip to content

Commit fe23a53

Browse files
committed
ci: upgrade actions runner from windows-2019 to windows-2022
1 parent 0129894 commit fe23a53

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/actions/ci_prologue/ci_prologue.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ fun_pasing_message(){
7373
windows_runner_label='self-hosted-ci-windows-2019'
7474
else
7575
linux_runner_label='ubuntu-22.04'
76-
windows_runner_label='windows-2019'
76+
windows_runner_label='windows-2022'
7777
fi
7878
echo "linux_runner_label is "$linux_runner_label
7979
echo "windows_runner_label is "$windows_runner_label
@@ -110,7 +110,7 @@ if [[ $GITHUB_EVENT_NAME == "pull_request" ]];then
110110
echo "windows_runner_label=self-hosted-ci-windows-2019" >> $GITHUB_OUTPUT
111111
else
112112
echo "linux_runner_label=ubuntu-20.04" >> $GITHUB_OUTPUT
113-
echo "windows_runner_label=windows-2019" >> $GITHUB_OUTPUT
113+
echo "windows_runner_label=windows-2022" >> $GITHUB_OUTPUT
114114
fi
115115
fi
116116
fi

.github/workflows/ci_benchmarks_windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
steps:
5353
- uses: actions/checkout@v4
5454
- name: install required tools
55-
if: ${{ needs.prologue.outputs.windows_runner_label == 'windows-2019' }}
55+
if: ${{ needs.prologue.outputs.windows_runner_label == 'windows-2022' }}
5656
run: |
5757
iwr -useb get.scoop.sh -outfile 'install-scoop.ps1'
5858
.\install-scoop.ps1 -RunAsAdmin

.github/workflows/ci_integration_tests_windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
steps:
5757
- uses: actions/checkout@v4
5858
- name: install required tools
59-
if: ${{ needs.prologue.outputs.windows_runner_label == 'windows-2019' }}
59+
if: ${{ needs.prologue.outputs.windows_runner_label == 'windows-2022' }}
6060
run: |
6161
iwr -useb get.scoop.sh -outfile 'install-scoop.ps1'
6262
.\install-scoop.ps1 -RunAsAdmin

.github/workflows/ci_unit_tests_windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
steps:
5353
- uses: actions/checkout@v4
5454
- name: install required tools
55-
if: ${{ needs.prologue.outputs.windows_runner_label == 'windows-2019' }}
55+
if: ${{ needs.prologue.outputs.windows_runner_label == 'windows-2022' }}
5656
run: |
5757
iwr -useb get.scoop.sh -outfile 'install-scoop.ps1'
5858
.\install-scoop.ps1 -RunAsAdmin

.github/workflows/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ jobs:
270270

271271
package-for-windows:
272272
name: package-for-windows
273-
runs-on: windows-2019
273+
runs-on: windows-2022
274274
steps:
275275
- name: Install Dependencies
276276
run: |

0 commit comments

Comments
 (0)