Reverted callbacks to list to preserve order, but also kept uniquen…
#6650
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: test-nuget-package | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build_macos_intel: | |
| runs-on: macos-15-intel | |
| # strategy: | |
| # matrix: | |
| # python: [3.11] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build HiGHS | |
| run: | | |
| cmake -E make_directory ${{github.workspace}}/build | |
| cmake -E make_directory ${{github.workspace}}/nugets | |
| cmake -E make_directory ${{github.workspace}}/test_nuget | |
| - name: Configure CMake | |
| working-directory: ${{github.workspace}}/build | |
| run: | | |
| cmake $GITHUB_WORKSPACE -DCSHARP=ON -DBUILD_DOTNET=ON \ | |
| -DCMAKE_C_COMPILER=/usr/bin/clang \ | |
| -DCMAKE_CXX_COMPILER=/usr/bin/clang++ | |
| - name: Build | |
| working-directory: ${{github.workspace}}/build | |
| run: cmake --build . --config Release --parallel | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '6.0.x' | |
| - name: Dotnet pack | |
| working-directory: ${{github.workspace}}/build/dotnet/Highs.Native | |
| run: dotnet pack -c Release /p:Version=1.15.1 | |
| - name: Add local feed | |
| run: dotnet nuget add source ${{github.workspace}}/nugets | |
| - name: Dotnet push to local feed | |
| working-directory: ${{github.workspace}}/build/dotnet/Highs.Native | |
| run: dotnet nuget push ./bin/Release/*.nupkg -s ${{github.workspace}}/nugets | |
| - name: Create new project and test | |
| shell: bash | |
| working-directory: ${{github.workspace}}/test_nuget | |
| run: | | |
| dotnet new console | |
| rm Program.cs | |
| cp $GITHUB_WORKSPACE/examples/call_highs_from_csharp.cs . | |
| dotnet add package Highs.Native -s ${{github.workspace}}/nugets | |
| dotnet run | |
| build_macos_arm: | |
| runs-on: macos-14 # macos-14 is arm64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build HiGHS | |
| run: | | |
| cmake -E make_directory ${{github.workspace}}/build | |
| cmake -E make_directory ${{github.workspace}}/nugets | |
| cmake -E make_directory ${{github.workspace}}/test_nuget | |
| - name: Configure CMake | |
| working-directory: ${{github.workspace}}/build | |
| run: | | |
| cmake $GITHUB_WORKSPACE -DCSHARP=ON -DBUILD_DOTNET=ON \ | |
| -DCMAKE_C_COMPILER=/usr/bin/clang \ | |
| -DCMAKE_CXX_COMPILER=/usr/bin/clang++ | |
| - name: Build | |
| working-directory: ${{github.workspace}}/build | |
| run: cmake --build . --config Release --parallel | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '6.0.x' | |
| - name: Dotnet pack | |
| working-directory: ${{github.workspace}}/build/dotnet/Highs.Native | |
| run: dotnet pack -c Release /p:Version=1.15.1 | |
| - name: Add local feed | |
| run: dotnet nuget add source ${{github.workspace}}/nugets | |
| - name: Dotnet push to local feed | |
| working-directory: ${{github.workspace}}/build/dotnet/Highs.Native | |
| run: dotnet nuget push ./bin/Release/*.nupkg -s ${{github.workspace}}/nugets | |
| - name: Create new project and test | |
| shell: bash | |
| working-directory: ${{github.workspace}}/test_nuget | |
| run: | | |
| dotnet new console | |
| rm Program.cs | |
| cp $GITHUB_WORKSPACE/examples/call_highs_from_csharp.cs . | |
| dotnet add package Highs.Native -s ${{github.workspace}}/nugets | |
| dotnet run | |
| build_linux: | |
| runs-on: ubuntu-latest | |
| container: stabletec/build-core:debian-11 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build HiGHS | |
| run: | | |
| cmake -E make_directory /__w/HiGHS/HiGHS/build | |
| cmake -E make_directory /__w/HiGHS/HiGHS/nugets | |
| cmake -E make_directory /__w/HiGHS/HiGHS/test_nuget | |
| - name: Configure CMake | |
| working-directory: /__w/HiGHS/HiGHS/build | |
| run: cmake $GITHUB_WORKSPACE -DCSHARP=ON -DBUILD_DOTNET=ON | |
| - name: Build | |
| working-directory: /__w/HiGHS/HiGHS/build | |
| run: cmake --build . --config Release --parallel | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '6.0.x' | |
| - name: Dotnet pack | |
| working-directory: /__w/HiGHS/HiGHS/build/dotnet/Highs.Native | |
| run: dotnet pack -c Release /p:Version=1.15.1 | |
| - name: Add local feed | |
| run: dotnet nuget add source /__w/HiGHS/HiGHS/nugets | |
| - name: Dotnet push to local feed | |
| working-directory: /__w/HiGHS/HiGHS/build/dotnet/Highs.Native | |
| run: dotnet nuget push ./bin/Release/*.nupkg -s /__w/HiGHS/HiGHS/nugets | |
| - name: Create new project and test | |
| shell: bash | |
| working-directory: /__w/HiGHS/HiGHS/test_nuget | |
| run: | | |
| dotnet new console | |
| rm Program.cs | |
| cp $GITHUB_WORKSPACE/examples/call_highs_from_csharp.cs . | |
| dotnet add package Highs.Native -s /__w/HiGHS/HiGHS/nugets | |
| dotnet run | |
| build_linux_8: | |
| runs-on: ubuntu-latest | |
| container: stabletec/build-core:debian-11 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build HiGHS | |
| run: | | |
| cmake -E make_directory /__w/HiGHS/HiGHS/build | |
| cmake -E make_directory /__w/HiGHS/HiGHS/nugets | |
| cmake -E make_directory /__w/HiGHS/HiGHS/test_nuget | |
| - name: Configure CMake | |
| working-directory: /__w/HiGHS/HiGHS/build | |
| run: cmake $GITHUB_WORKSPACE -DCSHARP=ON -DBUILD_DOTNET=ON | |
| - name: Build | |
| working-directory: /__w/HiGHS/HiGHS/build | |
| run: cmake --build . --config Release --parallel | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '8.0.x' | |
| - name: Dotnet pack | |
| working-directory: /__w/HiGHS/HiGHS/build/dotnet/Highs.Native | |
| run: dotnet pack -c Release /p:Version=1.15.1 | |
| - name: Add local feed | |
| run: dotnet nuget add source /__w/HiGHS/HiGHS/nugets | |
| - name: Dotnet push to local feed | |
| working-directory: /__w/HiGHS/HiGHS/build/dotnet/Highs.Native | |
| run: dotnet nuget push ./bin/Release/*.nupkg -s /__w/HiGHS/HiGHS/nugets | |
| - name: Create new project and test | |
| shell: bash | |
| working-directory: /__w/HiGHS/HiGHS/test_nuget | |
| run: | | |
| dotnet new console | |
| rm Program.cs | |
| cp $GITHUB_WORKSPACE/examples/call_highs_from_csharp.cs . | |
| dotnet add package Highs.Native -s /__w/HiGHS/HiGHS/nugets | |
| dotnet run | |
| build_windows: | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build HiGHS Windows native | |
| run: | | |
| cmake -E make_directory ${{github.workspace}}/build | |
| cmake -E make_directory ${{github.workspace}}/nugets | |
| cmake -E make_directory ${{github.workspace}}/test_nuget | |
| - name: Configure CMake | |
| shell: bash | |
| working-directory: ${{github.workspace}}/build | |
| run: cmake $GITHUB_WORKSPACE -DCSHARP=ON -DBUILD_DOTNET=ON | |
| - name: Build | |
| shell: bash | |
| working-directory: ${{github.workspace}}/build | |
| run: cmake --build . --config Release --parallel | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '6.0.x' | |
| - name: Dotnet pack | |
| working-directory: ${{github.workspace}}/build/dotnet/Highs.Native | |
| run: dotnet pack -c Release /p:Version=1.15.1 | |
| - name: Add local feed | |
| run: dotnet nuget add source -n name ${{github.workspace}}\nugets | |
| - name: Dotnet push to local feed | |
| working-directory: ${{github.workspace}}/build/dotnet/Highs.Native | |
| shell: bash | |
| run: dotnet nuget push ./bin/Release/*.nupkg -s name | |
| - name: Create new project and test | |
| working-directory: ${{github.workspace}}/test_nuget | |
| run: | | |
| dotnet new console | |
| rm Program.cs | |
| cp ${{github.workspace}}\examples\call_highs_from_csharp.cs . | |
| dotnet add package Highs.Native -v 1.15.1 -s ${{github.workspace}}\nugets | |
| dotnet run |