Skip to content

Commit a9af086

Browse files
authored
Update ci for windows and linux for deprecated and new OS
Update ci for windows and linux for deprecated and new OS
1 parent ffd7599 commit a9af086

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/linux-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
runs-on: ${{ matrix.os }}
1919
strategy:
2020
matrix:
21-
os: [ubuntu-20.04, ubuntu-22.04]
21+
os: [ubuntu-22.04, ubuntu-24.04]
2222
build_static: [true, false]
2323
flags: [ADD_CXXFLAGS=-fvisibility=hidden]
24-
download_requirements: [sudo apt install -y -qq gfortran liblapack-dev libmetis-dev libnauty2-dev]
24+
download_requirements: [sudo apt install -y -qq gfortran liblapack-dev libmetis-dev libnauty-dev]
2525
include:
2626
- os: macos-13
2727
build_static: false

.github/workflows/windows-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
include: [
23-
{ os: windows-2019, arch: x86_64, msystem: mingw64, debug: true, suffix: "-dbg" },
24-
{ os: windows-2019, arch: x86_64, msystem: mingw64, debug: false, suffix: "" },
25-
{ os: windows-2019, arch: msvc, msystem: mingw64, debug: false, suffix: "-md" },
26-
{ os: windows-2022, arch: msvc, msystem: mingw64, debug: false, suffix: "-md" },
23+
{ os: windows-2022, arch: x86_64, msystem: mingw64, debug: true, suffix: "-dbg" },
24+
{ os: windows-2025, arch: x86_64, msystem: mingw64, debug: false, suffix: "" },
25+
{ os: windows-2022, arch: msvc, msystem: mingw64, debug: true, suffix: "-dbg" },
26+
{ os: windows-2025, arch: msvc, msystem: mingw64, debug: false, suffix: "-md" },
2727
]
2828
steps:
2929
- name: Checkout source

.github/workflows/windows-msvs-ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ jobs:
2222
include: [
2323
# Only os: windows-2022 has Visual Studio 2022 (v17) installed with toolset v143, which is required.
2424
# configuration: "Release" or "Debug", platform: "x86" or "x64". See solution Configuration Manager.
25-
{ os: windows-2022, configuration: "Release", platform: "x64" },
25+
{ os: windows-2022, configuration: "Debug", platform: "x64" },
26+
{ os: windows-2025, configuration: "Release", platform: "x64" }
2627
]
2728
steps:
2829
- name: Set up environment variables

0 commit comments

Comments
 (0)