Skip to content

Commit e264c89

Browse files
Update stable ci for win and linux for deprecated and new OS (#146)
--------- Co-authored-by: Ted Ralphs <[email protected]>
1 parent f3e2664 commit e264c89

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/linux-ci.yml

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

.github/workflows/windows-ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ jobs:
2121
matrix:
2222
include: [
2323
{ os: windows-2022, arch: x86_64, msystem: mingw64, debug: true, suffix: "-dbg" },
24-
{ os: windows-2022, arch: x86_64, msystem: mingw64, debug: false, suffix: "" },
25-
{ os: windows-2022, arch: msvc, msystem: mingw64, debug: false, suffix: "-md" },
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" },
2627
]
2728
steps:
2829
- name: Checkout source
@@ -58,7 +59,7 @@ jobs:
5859
ADD_ARGS+=( --skip='ThirdParty/Metis ThirdParty/Mumps ThirdParty/Blas ThirdParty/Lapack' )
5960
ADD_BUILD_ARGS=()
6061
ADD_BUILD_ARGS+=( --build=x86_64-w64-mingw32 --tests main --enable-relocatable --disable-pkg-config )
61-
ADD_BUILD_ARGS+=( --verbosity 2 )
62+
ADD_BUILD_ARGS+=( --disable-openmp --verbosity 2 )
6263
[[ ${{ matrix.debug }} == "true" ]] && ADD_BUILD_ARGS+=( --enable-debug )
6364
[[ ${{ matrix.arch }} == "msvc" ]] && ADD_BUILD_ARGS+=( --enable-msvc=MD )
6465
./coinbrew/coinbrew fetch ${{ github.event.repository.name }} --skip-update "${ADD_ARGS[@]}"

0 commit comments

Comments
 (0)