-
Notifications
You must be signed in to change notification settings - Fork 184
53 lines (43 loc) · 1.67 KB
/
test-nuget-win.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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.1
- 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.1 -s ${{runner.workspace}}\nugets
dotnet run