Skip to content

Commit 900e72a

Browse files
committed
runs on windows-2022
Signed-off-by: zhangzujian <[email protected]>
1 parent d0342db commit 900e72a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build-windows.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
build-ovs-and-ovn:
7575
name: Build OVS and OVN
7676
needs: filter
77-
runs-on: windows-2019
77+
runs-on: windows-2022
7878
if: github.event_name == 'release' || github.event_name == 'workflow_dispatch' || needs.filter.outputs.build-ovs-ovn == 'true'
7979
steps:
8080
- name: Check out PTHREADS4W
@@ -129,7 +129,7 @@ jobs:
129129
working-directory: pthreads4w\code
130130
shell: cmd
131131
run: |
132-
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
132+
call "C:\Program Files (x86)\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
133133
nmake all install
134134
135135
- name: Build OVS and OVN
@@ -145,10 +145,10 @@ jobs:
145145
FOR /F "tokens=* USEBACKQ" %%F IN (`C:\msys64\usr\bin\cygpath.exe -u "%CD%\ovn"`) DO (
146146
SET _ovn_dir=%%F
147147
)
148-
CALL "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
148+
CALL "C:\Program Files (x86)\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
149149
SET _vs_path=
150150
FOR %%d IN ("%PATH:;=";"%") DO (
151-
echo %%~d | findstr /C:"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise" > nul && set _vs_path=!_vs_path!;%%~d
151+
echo %%~d | findstr /C:"C:\Program Files (x86)\Microsoft Visual Studio\2022\Enterprise" > nul && set _vs_path=!_vs_path!;%%~d
152152
)
153153
SET PATH="%_vs_path%;%PATH%"
154154
C:\msys64\usr\bin\bash.exe -lc "pacman -S --noconfirm python-pip libtool autoconf automake-wrapper"
@@ -178,7 +178,7 @@ jobs:
178178
build-kube-ovn:
179179
name: Build Kube-OVN
180180
needs: filter
181-
runs-on: windows-2019
181+
runs-on: windows-2022
182182
if: github.event_name == 'release' || github.event_name == 'workflow_dispatch' || needs.filter.outputs.build-kube-ovn == 'true'
183183
steps:
184184
- uses: actions/checkout@v4
@@ -230,7 +230,7 @@ jobs:
230230
needs:
231231
- build-ovs-and-ovn
232232
- build-kube-ovn
233-
runs-on: windows-2019
233+
runs-on: windows-2022
234234
steps:
235235
- uses: actions/checkout@v4
236236

0 commit comments

Comments
 (0)