-
Notifications
You must be signed in to change notification settings - Fork 183
214 lines (175 loc) · 6.48 KB
/
build-nuget-package.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
name: build-nuget-package
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
- 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/upload-artifact@v4
with:
name: macos-x64
path: ${{runner.workspace}}/build/dotnet/Highs.Native/runtimes
# 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
- 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/upload-artifact@v4
with:
name: macos-arm64
path: ${{runner.workspace}}/build/dotnet/Highs.Native/runtimes
# Build windows 32 and linux
build_windows_32:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Build HiGHS
run: |
cmake -E make_directory ${{runner.workspace}}/build32
- name: Configure CMake win32
shell: bash
working-directory: ${{runner.workspace}}/build32
run: cmake $GITHUB_WORKSPACE -DCSHARP=ON -DBUILD_DOTNET=ON -A Win32
- name: Build win32
shell: bash
working-directory: ${{runner.workspace}}/build32
run: cmake --build . --config Release --parallel
- uses: actions/upload-artifact@v4
with:
name: win-x32
path: ${{runner.workspace}}/build32/dotnet/Highs.Native/runtimes/win-x64/
build_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build HiGHS
run: |
cmake -E make_directory ${{runner.workspace}}/build
- 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/upload-artifact@v4
with:
name: linux-x64
path: ${{runner.workspace}}/build/dotnet/Highs.Native/runtimes
build_linux_arm64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build HiGHS
run: |
cmake -E make_directory ${{runner.workspace}}/build_linux_arm64
- name: Configure CMake linux-arm-64
working-directory: ${{runner.workspace}}/build_linux_arm64
shell: bash
run: cmake $GITHUB_WORKSPACE -DCSHARP=ON -DBUILD_DOTNET=ON -DCMAKE_TOOLCHAIN_FILE=$GITHUB_WORKSPACE/nuget/arm-toolchain.cmake
- name: Build linux-arm-64
working-directory: ${{runner.workspace}}/build_linux_arm64
shell: bash
run: cmake --build . --config Release --parallel
- uses: actions/upload-artifact@v4
with:
name: linux-arm64
path: ${{runner.workspace}}/build_linux_arm64/dotnet/Highs.Native/runtimes
build_windows:
runs-on: windows-latest
needs: [build_macos_12, build_macos_14, build_windows_32, build_linux, build_linux_arm64]
steps:
- uses: actions/checkout@v4
- name: Build HiGHS Windows native
run: |
cmake -E make_directory ${{runner.workspace}}/build
- name: Configure CMake
working-directory: ${{runner.workspace}}/build
shell: bash
run: cmake $GITHUB_WORKSPACE -DCSHARP=ON -DBUILD_DOTNET=ON
- name: Build
working-directory: ${{runner.workspace}}/build
shell: bash
run: cmake --build . --config Release --parallel
- name: Display structure of downloaded files
run: |
pwd
ls -R ${{runner.workspace}}/build/dotnet/Highs.Native/runtimes
- name: Download runtimes macos-x64
uses: actions/download-artifact@v4
with:
name: macos-x64
path: ${{runner.workspace}}/build/dotnet/Highs.Native/runtimes
- name: Download runtimes macos-arm64
uses: actions/download-artifact@v4
with:
name: macos-arm64
path: ${{runner.workspace}}/build/dotnet/Highs.Native/runtimes
- name: Download runtimes win-x32
uses: actions/download-artifact@v4
with:
name: win-x32
path: ${{runner.workspace}}/build/dotnet/Highs.Native/runtimes/win-x32
- name: Download runtimes
uses: actions/download-artifact@v4
with:
name: linux-x64
path: ${{runner.workspace}}/build/dotnet/Highs.Native/runtimes
- name: Download runtimes
uses: actions/download-artifact@v4
with:
name: linux-arm64
path: ${{runner.workspace}}/build/dotnet/Highs.Native/runtimes
- name: Display structure of downloaded files
run: ls -R ${{runner.workspace}}/build/dotnet/Highs.Native/runtimes
- 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.8.0
- uses: actions/upload-artifact@v4
with:
name: nuget
path: ${{runner.workspace}}/build/dotnet/Highs.Native/bin/Release/*.nupkg
dotnet_push:
runs-on: windows-latest
needs: [build_windows]
environment:
name: nuget
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
- name: Download nuget
uses: actions/download-artifact@v4
with:
name: nuget
- name: Dotnet push
run: dotnet nuget push "*.nupkg" --api-key ${{secrets.nuget_api_key}} --source https://api.nuget.org/v3/index.json
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}