-
Notifications
You must be signed in to change notification settings - Fork 40
392 lines (353 loc) · 13.7 KB
/
release-build.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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
name: Build release artifacts
on:
# Picking a workflow branch that is a tag, in combination with using the commit field is likely to fail for magic git clone/checkout reasons
workflow_dispatch:
inputs:
packages:
description: 'List of packages to build'
required: true
default: 'everything'
type: choice
options:
- everything
- archive
- msvc
- installer
- sharedlib
commit:
description: 'Commit-ish (tag, branchname, sha) for code to build (uses scripts from the same branch as the workflow)'
default: ''
schedule:
- cron: '15 09 * * *' # Run in the early hours of the morning (UTC)
release:
types: published
jobs:
#####################################
# Create all submodules archive
#####################################
create-all-submodule-archive:
name: Create all submodule archive
runs-on: ubuntu-latest
if: (github.event.action == 'published') || (github.event_name == 'workflow_dispatch' && (contains(github.event.inputs.packages, 'archive') || contains(github.event.inputs.packages, 'everything')))
steps:
- name: Determine fetch depth
id: determine_fd
shell: bash
run: |
unset DEPTH
if [ -n '${{ github.event.inputs.commit }}' ]; then DEPTH='0'; else DEPTH='1'; fi
echo "DEPTH=${DEPTH}" >> $GITHUB_OUTPUT
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: ${{ steps.determine_fd.outputs.DEPTH }}
if: github.event.action == 'published' || github.event_name == 'workflow_dispatch'
- name: Checkout shell scripts for workflow
shell: bash
if: github.event_name == 'workflow_dispatch' && github.event.inputs.commit
run: |
git checkout ${{ github.event.inputs.commit }}
git checkout ${{ github.ref_name }} -- scripts/_git-all-archive.sh || exit $?
for i in $(git status --short | cut -f2 -d " "); do sha256sum $i; done
exit 0
- name: Create archive
if: github.event_name != 'workflow_dispatch'
# Creates the archive then moves it to an artifact subfolder
run: ./scripts/_git-all-archive.sh -l "$(git rev-parse --abbrev-ref "${GITHUB_REF}")" && mkdir artifact && mv "Helics-$(git rev-parse --abbrev-ref "${GITHUB_REF}")-source.tar.gz" artifact/
- name: Create archive (no version)
if: github.event_name == 'workflow_dispatch'
# Creates the archive then moves it to an artifact subfolder
run: ./scripts/_git-all-archive.sh && mkdir artifact && mv "Helics-source.tar.gz" artifact/
- name: Upload archive to release
if: github.event_name != 'workflow_dispatch'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
UPLOAD_URL: ${{ github.event.release.upload_url }}
run: ./.github/actions/upload-release-asset.sh "artifact/Helics-$(git rev-parse --abbrev-ref "${GITHUB_REF}")-source.tar.gz"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: all-submodules-archive
path: artifact
#####################################
# Build MSVC archives
#####################################
build-windows-msvc:
runs-on: ${{ matrix.os }}
if: (github.event_name != 'workflow_dispatch') || (contains(github.event.inputs.packages, 'msvc') || contains(github.event.inputs.packages, 'everything'))
strategy:
matrix:
os: [windows-2019, windows-2022]
arch: [x64]
include:
- os: windows-2019
cmake_gen: 'Visual Studio 16 2019'
msvc_ver: 'msvc2019'
- os: windows-2022
cmake_gen: 'Visual Studio 17 2022'
msvc_ver: 'msvc2022'
steps:
- name: Determine fetch depth
id: determine_fd
shell: bash
run: |
unset DEPTH
if [ -n '${{ github.event.inputs.commit }}' ]; then DEPTH='0'; else DEPTH='1'; fi
echo "DEPTH=${DEPTH}" >> $GITHUB_OUTPUT
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: ${{ steps.determine_fd.outputs.DEPTH }}
if: github.event_name != 'schedule'
- name: Checkout develop branch
uses: actions/checkout@v4
with:
ref: develop
if: github.event_name == 'schedule'
- name: Checkout shell scripts for workflow
shell: bash
if: github.event_name == 'workflow_dispatch' && github.event.inputs.commit
run: |
git checkout ${{ github.event.inputs.commit }}
git checkout ${{ github.ref_name }} -- .github/actions/ || exit $?
for i in $(git status --short | cut -f2 -d " "); do sha256sum $i; done
exit 0
# Compile HELICS and create the installer
- name: Build installer
env:
BUILD_ARCH: ${{ matrix.arch }}
BUILD_GEN: ${{ matrix.cmake_gen }}
MSVC_VER: ${{ matrix.msvc_ver }}
shell: bash
run: ./.github/actions/release-build/msvc-${{ runner.os }}.sh
- name: Upload installer to release
if: github.event.action == 'published'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
UPLOAD_URL: ${{ github.event.release.upload_url }}
shell: bash
run: ./.github/actions/upload-release-asset.sh "$(ls artifact/Helics-*.zip)"
# GitHub Actions combines artifacts uploaded with the same name
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-msvc-installers
path: artifact
#####################################
# Build installers
#####################################
build-installers:
runs-on: ${{ matrix.os }}
name: Build ${{ matrix.os }} ${{ matrix.arch }} ${{ matrix.cpack_gen }} Installer
if: (github.event_name != 'workflow_dispatch') || (contains(github.event.inputs.packages, 'installer') || contains(github.event.inputs.packages, 'everything'))
strategy:
matrix:
id: [windows-x64, windows-x86, macos-x64, linux-x64]
include:
- id: windows-x64
os: windows-2019
arch: x64
cpack_gen: NSIS;ZIP
cmake_gen: 'Visual Studio 16 2019'
msvc_ver: 'msvc2019'
- id: windows-x86
os: windows-2019
arch: x86
cpack_gen: ZIP
cmake_gen: 'Visual Studio 16 2019'
msvc_ver: 'msvc2019'
- id: macos-x64
os: macos-latest
arch: x64
cpack_gen: ZIP
macos_target_ver: '10.15'
- id: linux-x64
os: ubuntu-latest
arch: x64
cpack_gen: TGZ
steps:
- name: Determine fetch depth
id: determine_fd
shell: bash
run: |
unset DEPTH
if [ -n '${{ github.event.inputs.commit }}' ]; then DEPTH='0'; else DEPTH='1'; fi
echo "DEPTH=${DEPTH}" >> $GITHUB_OUTPUT
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: ${{ steps.determine_fd.outputs.DEPTH }}
if: github.event_name != 'schedule'
- name: Checkout develop branch
uses: actions/checkout@v4
with:
ref: develop
if: github.event_name == 'schedule'
- name: Checkout shell scripts for workflow
shell: bash
if: github.event_name == 'workflow_dispatch' && github.event.inputs.commit
run: |
git checkout ${{ github.event.inputs.commit }}
git checkout ${{ github.ref_name }} -- .github/actions/ || exit $?
for i in $(git status --short | cut -f2 -d " "); do sha256sum $i; done
exit 0
# Setup a copy of the macOS SDK
- name: Setup macOS SDK
if: runner.os == 'macOS'
env:
MACOS_SDK_VER: ${{ matrix.macos_target_ver }}
run: ./.github/actions/setup-macos-sdk.sh
# Compile HELICS and create the installer
- name: Build installer
if: runner.os != 'Linux'
env:
BUILD_ARCH: ${{ matrix.arch }}
BUILD_GEN: ${{ matrix.cmake_gen }}
MSVC_VER: ${{ matrix.msvc_ver }}
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macos_target_ver }}
CPACK_GEN: ${{ matrix.cpack_gen }}
shell: bash
run: ./.github/actions/release-build/installer-${{ runner.os }}.sh
- name: Build installer (container)
if: runner.os == 'Linux'
uses: ./.github/actions/linux-release-builder
with:
script: ./.github/actions/release-build/installer-${{ runner.os }}.sh
- name: Upload installer to release
if: github.event.action == 'published'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
UPLOAD_URL: ${{ github.event.release.upload_url }}
shell: bash
run: for filename in artifact/Helics-*; do ./.github/actions/upload-release-asset.sh "${filename}"; done
# GitHub Actions combines artifacts uploaded with the same name
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.id }}-installers
path: artifact
#####################################
# Build shared libraries
#####################################
build-sharedlibs:
runs-on: ${{ matrix.os }}
if: (github.event_name != 'workflow_dispatch') || (contains(github.event.inputs.packages, 'sharedlib') || contains(github.event.inputs.packages, 'everything'))
name: Build ${{ matrix.os }} ${{ matrix.arch }} Shared Library
strategy:
matrix:
id: [windows-x86, windows-x64, macos-x64, ubuntu-x64]
include:
- id: windows-x86
os: windows-2019
arch: x86
cmake_gen: 'Visual Studio 16 2019'
msvc_ver: 'msvc2019'
- id: windows-x64
os: windows-2019
arch: x64
cmake_gen: 'Visual Studio 16 2019'
msvc_ver: 'msvc2019'
- id: macos-x64
os: macos-latest
arch: x64
macos_target_ver: '10.15'
- id: ubuntu-x64
os: ubuntu-latest
arch: x64
steps:
- name: Determine fetch depth
id: determine_fd
shell: bash
run: |
unset DEPTH
if [ -n '${{ github.event.inputs.commit }}' ]; then DEPTH='0'; else DEPTH='1'; fi
echo "DEPTH=${DEPTH}" >> $GITHUB_OUTPUT
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: ${{ steps.determine_fd.outputs.DEPTH }}
if: github.event_name != 'schedule'
- name: Checkout develop branch
uses: actions/checkout@v4
with:
ref: develop
if: github.event_name == 'schedule'
- name: Checkout shell scripts for workflow
shell: bash
if: github.event_name == 'workflow_dispatch' && github.event.inputs.commit
run: |
git checkout ${{ github.event.inputs.commit }}
git checkout ${{ github.ref_name }} -- .github/actions/ || exit $?
for i in $(git status --short | cut -f2 -d " "); do sha256sum $i; done
exit 0
# Setup a copy of the macOS SDK
- name: Setup macOS SDK
if: runner.os == 'macOS'
env:
MACOS_SDK_VER: ${{ matrix.macos_target_ver }}
run: ./.github/actions/setup-macos-sdk.sh
# Compile HELICS and create the installer
- name: Build shared library
if: runner.os != 'Linux'
env:
BUILD_ARCH: ${{ matrix.arch }}
BUILD_GEN: ${{ matrix.cmake_gen }}
MSVC_VER: ${{ matrix.msvc_ver }}
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macos_target_ver }}
shell: bash
run: ./.github/actions/release-build/shared-library-${{ runner.os }}.sh
- name: Build shared library (container)
if: runner.os == 'Linux'
uses: ./.github/actions/linux-release-builder
with:
script: ./.github/actions/release-build/shared-library-${{ runner.os }}.sh
- name: Upload installer to release
if: github.event.action == 'published'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
UPLOAD_URL: ${{ github.event.release.upload_url }}
shell: bash
run: ./.github/actions/upload-release-asset.sh "$(ls artifact/Helics-*)"
# GitHub Actions combines artifacts uploaded with the same name
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.id }}-sharedlib-installers
path: artifact
#####################################
# Generate SHA-256 file
#####################################
generate-sha256:
name: Calculate SHA256 for release assets
needs: [create-all-submodule-archive, build-installers, build-sharedlibs, build-windows-msvc]
runs-on: ubuntu-latest
if: github.event.action == 'published'
steps:
- uses: actions/checkout@v4
- name: Get all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
merge-multiple: true
- name: Create SHA-256 file
run: cd artifacts && sha256sum * > "Helics-$(git rev-parse --abbrev-ref "${GITHUB_REF}")-SHA-256.txt"
- name: Upload SHA-256 file to release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
UPLOAD_URL: ${{ github.event.release.upload_url }}
run: ./.github/actions/upload-release-asset.sh "artifacts/Helics-$(git rev-parse --abbrev-ref "${GITHUB_REF}")-SHA-256.txt"
#####################################
# Trigger helics-packaging workflows
#####################################
send-version-update-event:
name: Trigger helics-packaging workflows
needs: [generate-sha256]
runs-on: ubuntu-latest
if: github.event.action == 'published'
steps:
- name: Run helics_version_update workflow in helics-packaging
env:
GH_TOKEN: ${{ secrets.HELICS_PACKAGING_TOKEN }}
run: |
HELICS_VERSION="${{ github.event.release.tag_name }}"
gh workflow run --repo GMLC-TDC/helics-packaging helics_version_update.yml -f version="${HELICS_VERSION#v}"