74
74
build-ovs-and-ovn :
75
75
name : Build OVS and OVN
76
76
needs : filter
77
- runs-on : windows-2019
77
+ runs-on : windows-2022
78
78
if : github.event_name == 'release' || github.event_name == 'workflow_dispatch' || needs.filter.outputs.build-ovs-ovn == 'true'
79
79
steps :
80
80
- name : Check out PTHREADS4W
@@ -129,7 +129,7 @@ jobs:
129
129
working-directory : pthreads4w\code
130
130
shell : cmd
131
131
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"
133
133
nmake all install
134
134
135
135
- name : Build OVS and OVN
@@ -145,10 +145,10 @@ jobs:
145
145
FOR /F "tokens=* USEBACKQ" %%F IN (`C:\msys64\usr\bin\cygpath.exe -u "%CD%\ovn"`) DO (
146
146
SET _ovn_dir=%%F
147
147
)
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"
149
149
SET _vs_path=
150
150
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
152
152
)
153
153
SET PATH="%_vs_path%;%PATH%"
154
154
C:\msys64\usr\bin\bash.exe -lc "pacman -S --noconfirm python-pip libtool autoconf automake-wrapper"
@@ -178,7 +178,7 @@ jobs:
178
178
build-kube-ovn :
179
179
name : Build Kube-OVN
180
180
needs : filter
181
- runs-on : windows-2019
181
+ runs-on : windows-2022
182
182
if : github.event_name == 'release' || github.event_name == 'workflow_dispatch' || needs.filter.outputs.build-kube-ovn == 'true'
183
183
steps :
184
184
- uses : actions/checkout@v4
@@ -230,7 +230,7 @@ jobs:
230
230
needs :
231
231
- build-ovs-and-ovn
232
232
- build-kube-ovn
233
- runs-on : windows-2019
233
+ runs-on : windows-2022
234
234
steps :
235
235
- uses : actions/checkout@v4
236
236
0 commit comments