-
Notifications
You must be signed in to change notification settings - Fork 181
101 lines (81 loc) · 3.19 KB
/
test-nuget-macos.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
name: test-nuget-macos
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
# macos 12 is Intel
build_macos_12:
runs-on: macos-12
# strategy:
# matrix:
# python: [3.11]
steps:
- uses: actions/checkout@v4
- name: Build HiGHS
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
working-directory: ${{runner.workspace}}/build
run: cmake $GITHUB_WORKSPACE -DCSHARP=ON -DBUILD_DOTNET=ON
- name: Build
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 ${{runner.workspace}}/nugets
- name: Dotnet push to local feed
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
run: dotnet nuget push ./bin/Release/*.nupkg -s ${{runner.workspace}}/nugets
- name: Create new project and test
shell: bash
working-directory: ${{runner.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 ${{runner.workspace}}/nugets
dotnet run
# macos 14 is M1 (beta)
build_macos_14:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Build HiGHS
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
working-directory: ${{runner.workspace}}/build
run: cmake $GITHUB_WORKSPACE -DCSHARP=ON -DBUILD_DOTNET=ON
- name: Build
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 ${{runner.workspace}}/nugets
- name: Dotnet push to local feed
working-directory: ${{runner.workspace}}/build/dotnet/Highs.Native
run: dotnet nuget push ./bin/Release/*.nupkg -s ${{runner.workspace}}/nugets
- name: Create new project and test
shell: bash
working-directory: ${{runner.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 ${{runner.workspace}}/nugets
dotnet run