Skip to content

Commit d523b6a

Browse files
authored
Merge pull request #4568 from vicentebolea/update-windows-imgs
ci: use windows 2022 and 2025
2 parents 72f41bd + 8318716 commit d523b6a

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/everything.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -361,22 +361,22 @@ jobs:
361361
strategy:
362362
fail-fast: false
363363
matrix:
364-
os: [win2019, win2022]
364+
os: [win2022, win2025]
365365
shared: [shared]
366366
parallel: [msmpi]
367367
include:
368-
- os: win2019
369-
image: windows-2019
370-
compiler: vs2019
371368
- os: win2022
372369
image: windows-2022
373370
compiler: vs2022
374-
- os: win2022
375-
image: windows-2022
371+
- os: win2025
372+
image: windows-2025
373+
compiler: vs2022
374+
- os: win2025
375+
image: windows-2025
376376
compiler: vs2022
377377
parallel: serial
378-
- os: win2022
379-
image: windows-2022
378+
- os: win2025
379+
image: windows-2025
380380
shared: static
381381
compiler: vs2022
382382
parallel: serial

scripts/ci/cmake/ci-win2022-vs2022-msmpi.cmake

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,14 @@ ADIOS2_BUILD_EXAMPLES:BOOL=ON
1010
ADIOS2_USE_BZip2:BOOL=OFF
1111
ADIOS2_USE_Fortran:BOOL=OFF
1212
ADIOS2_USE_MPI:BOOL=ON
13-
ADIOS2_USE_HDF5:STRING=ON
14-
ADIOS2_USE_HDF5_VOL:STRING=OFF
1513
ADIOS2_USE_Python:BOOL=ON
1614
1715
Python_ROOT_DIR:PATH=$ENV{CMAKE_PREFIX_PATH}
1816
Python_FIND_STRATEGY:STRING=LOCATION
1917
Python_FIND_FRAMEWORK:STRING=FIRST
2018
")
2119

20+
set(CTEST_TEST_TIMEOUT 500)
2221
set(CTEST_CMAKE_GENERATOR "Visual Studio 17 2022")
2322
set(CTEST_CMAKE_GENERATOR_PLATFORM "x64")
2423
list(APPEND CTEST_UPDATE_NOTES_FILES "${CMAKE_CURRENT_LIST_FILE}")

scripts/ci/cmake/ci-win2019-vs2019-msmpi.cmake renamed to scripts/ci/cmake/ci-win2025-vs2022-msmpi.cmake

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@ ADIOS2_BUILD_EXAMPLES:BOOL=ON
1010
ADIOS2_USE_BZip2:BOOL=OFF
1111
ADIOS2_USE_Fortran:BOOL=OFF
1212
ADIOS2_USE_MPI:BOOL=ON
13+
ADIOS2_USE_HDF5:STRING=ON
14+
ADIOS2_USE_HDF5_VOL:STRING=OFF
1315
ADIOS2_USE_Python:BOOL=ON
1416
1517
Python_ROOT_DIR:PATH=$ENV{CMAKE_PREFIX_PATH}
1618
Python_FIND_STRATEGY:STRING=LOCATION
1719
Python_FIND_FRAMEWORK:STRING=FIRST
1820
")
1921

20-
set(CTEST_TEST_TIMEOUT 500)
21-
set(CTEST_CMAKE_GENERATOR "Visual Studio 16 2019")
22+
set(CTEST_CMAKE_GENERATOR "Visual Studio 17 2022")
2223
set(CTEST_CMAKE_GENERATOR_PLATFORM "x64")
2324
list(APPEND CTEST_UPDATE_NOTES_FILES "${CMAKE_CURRENT_LIST_FILE}")
2425
# https://github.com/ornladios/ADIOS2/issues/4276

0 commit comments

Comments
 (0)