Skip to content

Commit 9eb316f

Browse files
authored
Merge pull request #2956 from ERGO-Code/latest
Latest
2 parents 3be639f + 678ec3d commit 9eb316f

211 files changed

Lines changed: 25024 additions & 4701 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build-bazel.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: build-bazel
22

33
on: [push, pull_request]
44

5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.ref }}
7+
cancel-in-progress: true
8+
59
jobs:
610
bazel:
711
runs-on: ${{ matrix.os }}

.github/workflows/build-clang.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: build-clang
22

33
on: [push, pull_request]
44

5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.ref }}
7+
cancel-in-progress: true
8+
59
jobs:
610
debug:
711
runs-on: ${{ matrix.os }}

.github/workflows/build-fast.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: build-fast
22

33
on: [push, pull_request]
44

5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.ref }}
7+
cancel-in-progress: true
8+
59
jobs:
610
release:
711
runs-on: ${{ matrix.os }}

.github/workflows/build-intel.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: build-intel
22

33
on: [push, pull_request]
44

5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.ref }}
7+
cancel-in-progress: true
8+
59
jobs:
610
build:
711
runs-on: ubuntu-latest

.github/workflows/build-linux.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: build-linux
22

33
on: [push, pull_request]
44

5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.ref }}
7+
cancel-in-progress: true
8+
59
jobs:
610
debug:
711
runs-on: ${{ matrix.os }}

.github/workflows/build-macos.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: build-macos
22

33
on: [pull_request]
44

5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.ref }}
7+
cancel-in-progress: true
8+
59
jobs:
610
debug:
711
runs-on: ${{ matrix.os }}

.github/workflows/build-meson.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: build-meson
22

33
on: [push, pull_request]
44

5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.ref }}
7+
cancel-in-progress: true
8+
59
jobs:
610
buildmeson:
711
runs-on: ${{ matrix.os }}

.github/workflows/build-mingw.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: build-mingw
22

33
on: [pull_request]
44

5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.ref }}
7+
cancel-in-progress: true
8+
59
jobs:
610
mingw:
711
runs-on: windows-latest

.github/workflows/build-nuget-package.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,14 @@ jobs:
1818
1919
- name: Configure CMake
2020
working-directory: ${{runner.workspace}}/build
21-
run: cmake $GITHUB_WORKSPACE -DCSHARP=ON -DBUILD_DOTNET=ON
21+
run: |
22+
cmake $GITHUB_WORKSPACE -DCSHARP=ON -DBUILD_DOTNET=ON \
23+
-DCMAKE_C_COMPILER=/usr/bin/clang \
24+
-DCMAKE_CXX_COMPILER=/usr/bin/clang++
2225
2326
- name: Build
2427
working-directory: ${{runner.workspace}}/build
25-
run: cmake --build . --config Release --parallel
28+
run: cmake --build . --config Release --parallel --verbose
2629

2730
- uses: actions/upload-artifact@v4
2831
with:
@@ -40,7 +43,11 @@ jobs:
4043
4144
- name: Configure CMake
4245
working-directory: ${{runner.workspace}}/build
43-
run: cmake $GITHUB_WORKSPACE -DCSHARP=ON -DBUILD_DOTNET=ON
46+
run: |
47+
cmake $GITHUB_WORKSPACE -DCSHARP=ON -DBUILD_DOTNET=ON \
48+
-DCMAKE_C_COMPILER=/usr/bin/clang \
49+
-DCMAKE_CXX_COMPILER=/usr/bin/clang++
50+
4451
4552
- name: Build
4653
working-directory: ${{runner.workspace}}/build
@@ -184,7 +191,7 @@ jobs:
184191

185192
- name: Dotnet pack
186193
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
187-
run: dotnet pack -c Release /p:Version=1.13.1
194+
run: dotnet pack -c Release /p:Version=1.14.0
188195

189196
- uses: actions/upload-artifact@v4
190197
with:

.github/workflows/build-python-sdist.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: build-python-sdist
22

33
on: [pull_request]
44

5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.ref }}
7+
cancel-in-progress: true
8+
59
jobs:
610
build_sdist_ubuntu:
711
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)