Merge pull request #1939 from pierre-haessig/patch-1 #399
This file contains 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-win | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build_windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build HiGHS Windows native | |
run: | | |
cmake -E make_directory ${{runner.workspace}}/build | |
cmake -E make_directory ${{runner.workspace}}/nugets | |
cmake -E make_directory ${{runner.workspace}}/test_nuget | |
- name: Configure CMake | |
shell: bash | |
working-directory: ${{runner.workspace}}/build | |
run: cmake $GITHUB_WORKSPACE -DCSHARP=ON -DBUILD_DOTNET=ON | |
- name: Build | |
shell: bash | |
working-directory: ${{runner.workspace}}/build | |
run: cmake --build . --config Release --parallel | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '6.0.x' | |
- name: Dotnet pack | |
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native | |
run: dotnet pack -c Release /p:Version=1.7.2 | |
- name: Add local feed | |
run: dotnet nuget add source -n name ${{runner.workspace}}\nugets | |
- name: Dotnet push to local feed | |
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native | |
shell: bash | |
run: dotnet nuget push ./bin/Release/*.nupkg -s name | |
- name: Create new project and test | |
working-directory: ${{runner.workspace}}/test_nuget | |
run: | | |
dotnet new console | |
rm Program.cs | |
cp ${{runner.workspace}}\HiGHS\examples\call_highs_from_csharp.cs . | |
dotnet add package Highs.Native -v 1.7.2 -s ${{runner.workspace}}\nugets | |
dotnet run |