forked from mne-tools/mne-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
638 lines (615 loc) · 24.3 KB
/
release.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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
name: Linux|MacOS|Win|WASM
on:
push:
tags:
- v0.*
branches:
- master
jobs:
CreateRelease:
runs-on: ubuntu-16.04
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Create new branch with the tag's name (stable release only)
if: endsWith(github.ref, 'master') == false
run: |
currentVersionPatch=`echo ${GITHUB_REF#refs/tags/} | cut -d. -f3`
# Only branch off if we have a new minor version bump, which will always result in the patch version to be 0
if [[ "$currentVersionPatch" == 0 ]]; then
echo Branching off $currentVersionPatch
# Setup Git
git config --global user.email lorenzesch@hotmail.com
git config --global user.name LorenzE
# Create new branch named after the new version tag
git checkout -b ${GITHUB_REF#refs/tags/}
git push origin refs/heads/${GITHUB_REF#refs/tags/}
fi
- name: hub test
run: hub --help
- name: Setup Github credentials (dev release only)
if: endsWith(github.ref, 'master') == true
uses: fusion-engineering/setup-git-credentials@v2
with:
credentials: ${{secrets.GIT_CREDENTIALS}}
- name: Update dev_build tag and release (dev release only)
if: endsWith(github.ref, 'master') == true
env:
GITHUB_USER: LorenzE
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global user.email lorenzesch@hotmail.com
git config --global user.name $GITHUB_USER
# Delete current dev_build release remotley.
# Must be done before deleting the remote tag associated with the dev_build release.
# This prevents a draft release to be left over after we delete the tag remotley.
hub release delete dev_build
# Delete current tag remotley
git push origin :refs/tags/dev_build
# Change dev_build tag to point to newest commit
git tag dev_build -f -a -m "Development Builds"
# Send the new tag
git push -f --tag
# Create new dev_build release
hub release create -m "Development Builds" dev_build --prerelease
LinuxStatic:
runs-on: ubuntu-16.04
needs: CreateRelease
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Install OpenGL
run: |
sudo apt-get update -q
sudo apt-get install build-essential libgl1-mesa-dev
- name: Install Qt
run: |
# Download the pre-built static version of Qt, which was created with the buildqtbinaries.yml workflow
wget -O qt5_5151_static_binaries_linux.tar.gz https://www.dropbox.com/s/ilwo7mu9muk48mf/qt5_5151_static_binaries_linux.tar.gz?dl=1
mkdir ../Qt5_binaries
tar xvzf qt5_5151_static_binaries_linux.tar.gz -C ../ -P
# Uncomment this if you want to build Qt statically in this workflow
# - name: Compile static Qt version
# run: |
# # Clone Qt5 repo
# cd ..
# git clone https://code.qt.io/qt/qt5.git -b 5.15.1
# cd qt5
# ./init-repository -f --module-subset=qtbase,qtcharts,qtsvg,qt3d
# # Create shadow build folder
# cd ..
# mkdir qt5_shadow
# cd qt5_shadow
# # Configure Qt5
# ../qt5/configure -static -release -prefix "../Qt5_binaries" -skip webengine -nomake tools -nomake tests -nomake examples -no-dbus -no-ssl -no-pch -opensource -confirm-license
# make module-qtbase module-qtsvg module-qtcharts module-qt3d -j4
# make install -j4
- name: Configure and compile MNE-CPP
run: |
../Qt5_binaries/bin/qmake -r MNECPP_CONFIG+=noTests MNECPP_CONFIG+=noExamples MNECPP_CONFIG+=static
make -j4
make install -j4
- name: Deploy binaries
run: |
./tools/deployment/deploy_linux_static
- name: Deploy binaries with stable release on Github
if: endsWith(github.ref, 'master') == false
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: mne-cpp-linux-static-x86_64.tar.gz
asset_name: mne-cpp-linux-static-x86_64.tar.gz
tag: ${{ github.ref }}
overwrite: true
- name: Deploy binaries with dev release on Github
if: endsWith(github.ref, 'master') == true
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: mne-cpp-linux-static-x86_64.tar.gz
asset_name: mne-cpp-linux-static-x86_64.tar.gz
tag: dev_build
overwrite: true
MacOSStatic:
runs-on: macos-latest
needs: CreateRelease
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Install Qt
run: |
# Download the pre-built static version of Qt, which was created with the buildqtbinaries.yml workflow
wget -O qt5_5151_static_binaries_macos.tar.gz https://www.dropbox.com/s/2hfv7q38k528tfz/qt5_5151_static_binaries_macos.tar.gz?dl=1
tar xzf qt5_5151_static_binaries_macos.tar.gz -P
# Uncomment this if you want to build Qt statically in this workflow
# - name: Compile static Qt version
# run: |
# # Clone Qt5 repo
# cd ..
# git clone https://code.qt.io/qt/qt5.git -b 5.15.1
# cd qt5
# ./init-repository -f --module-subset=qtbase,qtcharts,qtsvg,qt3d
# # Create shadow build folder
# cd ..
# mkdir qt5_shadow
# cd qt5_shadow
# # Configure Qt5
# ../qt5/configure -static -release -prefix "../Qt5_binaries" -skip webengine -nomake tools -nomake tests -nomake examples -no-dbus -no-ssl -no-pch -opensource -confirm-license
# make module-qtbase module-qtsvg module-qtcharts module-qt3d -j
# make install -j
- name: Configure and compile MNE-CPP
run: |
../Qt5_binaries/bin/qmake -r MNECPP_CONFIG+=noTests MNECPP_CONFIG+=noExamples MNECPP_CONFIG+=static MNECPP_CONFIG+=withAppBundles
make -j
make install -j
- name: Deploy binaries
run: |
./tools/deployment/deploy_macos_static
- name: Deploy binaries with stable release on Github
if: endsWith(github.ref, 'master') == false
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: mne-cpp-macos-static-x86_64.tar.gz
asset_name: mne-cpp-macos-static-x86_64.tar.gz
tag: ${{ github.ref }}
overwrite: true
- name: Deploy binaries with dev release on Github
if: endsWith(github.ref, 'master') == true
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: mne-cpp-macos-static-x86_64.tar.gz
asset_name: mne-cpp-macos-static-x86_64.tar.gz
tag: dev_build
overwrite: true
WinStatic:
runs-on: windows-2019
needs: CreateRelease
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Install Python 3.7 version
uses: actions/setup-python@v1
with:
python-version: '3.7'
architecture: 'x64'
- name: Install jom
run: |
Invoke-WebRequest https://www.dropbox.com/s/dku543gtw7ik7hr/jom.zip?dl=1 -OutFile .\jom.zip
expand-archive -path "jom.zip"
echo "D:\a\mne-cpp\mne-cpp\jom" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Install Qt
run: |
# Download the pre-built static version of Qt, which was created with the buildqtbinaries.yml workflow
Invoke-WebRequest https://www.dropbox.com/s/z745z290s9pknih/qt5_5151_static_binaries_win.zip?dl=1 -OutFile .\qt5_5151_static_binaries_win.zip
expand-archive -path "qt5_5151_static_binaries_win.zip" -destinationpath "..\"
# Uncomment this if you want to build Qt statically in this workflow
# - name: Compile static Qt version
# run: |
# # Clone Qt5 repo
# cd ..
# git clone https://code.qt.io/qt/qt5.git -b 5.15.1
# cd qt5
# perl init-repository -f --module-subset=qtbase,qtcharts,qtsvg,qt3d
# # Create shadow build folder
# cd ..
# mkdir qt5_shadow
# cd qt5_shadow
# # Setup the compiler
# cmd.exe /c "call `"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat`" && set > %temp%\vcvars.txt"
# Get-Content "$env:temp\vcvars.txt" | Foreach-Object { if ($_ -match "^(.*?)=(.*)$") { Set-Content "env:\$($matches[1])" $matches[2] } }
# # Configure Qt5
# ..\qt5\configure.bat -release -static -no-pch -optimize-size -opengl desktop -platform win32-msvc -prefix "..\Qt5_binaries" -skip webengine -nomake tools -nomake tests -nomake examples -opensource -confirm-license
# jom -j4
# nmake install
- name: Configure and compile MNE-CPP
run: |
cmd.exe /c "call `"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat`" && set > %temp%\vcvars.txt"
Get-Content "$env:temp\vcvars.txt" | Foreach-Object { if ($_ -match "^(.*?)=(.*)$") { Set-Content "env:\$($matches[1])" $matches[2] } }
..\Qt5_binaries\bin\qmake -r MNECPP_CONFIG+=noTests MNECPP_CONFIG+=noExamples MNECPP_CONFIG+=static
jom -j4
- name: Deploy binaries
run: |
./tools/deployment/deploy_win_static.bat
- name: Deploy binaries with stable release on Github
if: endsWith(github.ref, 'master') == false
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: mne-cpp-windows-static-x86_64.zip
asset_name: mne-cpp-windows-static-x86_64.zip
tag: ${{ github.ref }}
overwrite: true
- name: Deploy binaries with dev release on Github
if: endsWith(github.ref, 'master') == true
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: mne-cpp-windows-static-x86_64.zip
asset_name: mne-cpp-windows-static-x86_64.zip
tag: dev_build
overwrite: true
LinuxDynamic:
runs-on: ubuntu-16.04
needs: CreateRelease
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Install Python 3.7 version
uses: actions/setup-python@v1
with:
python-version: '3.7'
architecture: 'x64'
- name: Install BrainFlow and LSL submodules
run: |
git submodule update --init applications/mne_scan/plugins/brainflowboard/brainflow
git submodule update --init applications/mne_scan/plugins/lsladapter/liblsl
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
version: 5.15.1
modules: qtcharts
- name: Compile BrainFlow submodule
run: |
cd applications/mne_scan/plugins/brainflowboard/brainflow
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=../installed ..
make
make install
- name: Compile LSL submodule
run: |
cd applications/mne_scan/plugins/lsladapter/liblsl
mkdir build
cd build
cmake ..
make
make install
- name: Configure and compile MNE-CPP
run: |
qmake -r MNECPP_CONFIG+=noTests MNECPP_CONFIG+=noExamples MNECPP_CONFIG+=withBrainFlow MNECPP_CONFIG+=withLsl
make -j4
- name: Deploy binaries
run: |
./tools/deployment/deploy_linux
- name: Deploy binaries with stable release on Github
if: endsWith(github.ref, 'master') == false
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: mne-cpp-linux-dynamic-x86_64.tar.gz
asset_name: mne-cpp-linux-dynamic-x86_64.tar.gz
tag: ${{ github.ref }}
overwrite: true
- name: Deploy binaries with dev release on Github
if: endsWith(github.ref, 'master') == true
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: mne-cpp-linux-dynamic-x86_64.tar.gz
asset_name: mne-cpp-linux-dynamic-x86_64.tar.gz
tag: dev_build
overwrite: true
MacOSDynamic:
runs-on: macos-latest
needs: CreateRelease
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Install Python 3.7 version
uses: actions/setup-python@v1
with:
python-version: '3.7'
architecture: 'x64'
- name: Install BrainFlow and LSL submodules
run: |
git submodule update --init applications/mne_scan/plugins/brainflowboard/brainflow
git submodule update --init applications/mne_scan/plugins/lsladapter/liblsl
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
version: 5.15.1
modules: qtcharts
- name: Compile BrainFlow submodule
run: |
mkdir applications/mne_scan/plugins/brainflowboard/brainflow/build
cd applications/mne_scan/plugins/brainflowboard/brainflow/build
cmake -DCMAKE_INSTALL_PREFIX=../installed -DCMAKE_BUILD_TYPE=Release ..
make -j
make install -j
- name: Compile LSL submodule
run: |
cd applications/mne_scan/plugins/lsladapter/liblsl
mkdir build
cd build
cmake ..
make
make install
- name: Configure and compile MNE-CPP
run: |
qmake -r MNECPP_CONFIG+=noTests MNECPP_CONFIG+=noExamples MNECPP_CONFIG+=withBrainFlow MNECPP_CONFIG+=withLsl MNECPP_CONFIG+=withAppBundles
make -j4
- name: Deploy binaries (MacOS)
run: |
./tools/deployment/deploy_macos
- name: Deploy binaries with stable release on Github
if: endsWith(github.ref, 'master') == false
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: mne-cpp-macos-dynamic-x86_64.tar.gz
asset_name: mne-cpp-macos-dynamic-x86_64.tar.gz
tag: ${{ github.ref }}
overwrite: true
- name: Deploy binaries with dev release on Github
if: endsWith(github.ref, 'master') == true
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: mne-cpp-macos-dynamic-x86_64.tar.gz
asset_name: mne-cpp-macos-dynamic-x86_64.tar.gz
tag: dev_build
overwrite: true
WinDynamic:
runs-on: windows-2019
needs: CreateRelease
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Install Python 3.7 version
uses: actions/setup-python@v1
with:
python-version: '3.7'
architecture: 'x64'
- name: Install BrainFlow and LSL submodules
run: |
git submodule update --init applications/mne_scan/plugins/brainflowboard/brainflow
git submodule update --init applications/mne_scan/plugins/lsladapter/liblsl
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
version: 5.15.1
arch: win64_msvc2019_64
modules: qtcharts
- name: Install jom
run: |
Invoke-WebRequest https://www.dropbox.com/s/dku543gtw7ik7hr/jom.zip?dl=1 -OutFile .\jom.zip
expand-archive -path "jom.zip"
echo "D:\a\mne-cpp\mne-cpp\jom" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Compile BrainFlow submodule
run: |
cd applications\mne_scan\plugins\brainflowboard\brainflow
mkdir build
cd build
cmake -G "Visual Studio 16 2019" -A x64 -DMSVC_RUNTIME=dynamic -DCMAKE_SYSTEM_VERSION=8.1 -DCMAKE_INSTALL_PREFIX="$env:GITHUB_WORKSPACE\applications\mne_scan\plugins\brainflowboard\brainflow\installed" ..
cmake --build . --target install --config Release
- name: Compile LSL submodule
run: |
cd applications\mne_scan\plugins\lsladapter\liblsl
mkdir build
cd build
cmake .. -G "Visual Studio 16 2019" -A x64
cmake --build . --config Release --target install
- name: Configure and compile MNE-CPP
run: |
cmd.exe /c "call `"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat`" && set > %temp%\vcvars.txt"
Get-Content "$env:temp\vcvars.txt" | Foreach-Object { if ($_ -match "^(.*?)=(.*)$") { Set-Content "env:\$($matches[1])" $matches[2] } }
qmake -r MNECPP_CONFIG+=noTests MNECPP_CONFIG+=noExamples MNECPP_CONFIG+=withBrainFlow MNECPP_CONFIG+=withLsl
jom -j4
- name: Deploy binaries (Windows)
run: |
./tools/deployment/deploy_win.bat
- name: Deploy binaries with stable release on Github
if: endsWith(github.ref, 'master') == false
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: mne-cpp-windows-dynamic-x86_64.zip
asset_name: mne-cpp-windows-dynamic-x86_64.zip
tag: ${{ github.ref }}
overwrite: true
- name: Deploy binaries with dev release on Github
if: endsWith(github.ref, 'master') == true
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: mne-cpp-windows-dynamic-x86_64.zip
asset_name: mne-cpp-windows-dynamic-x86_64.zip
tag: dev_build
overwrite: true
Tests:
# Only run for dev releases
if: endsWith(github.ref, 'master') == true
runs-on: ubuntu-16.04
needs: CreateRelease
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Install Python 3.7 version
uses: actions/setup-python@v1
with:
python-version: '3.7'
architecture: 'x64'
- name: Install Codecov
run: |
sudo pip install codecov
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
version: 5.15.1
modules: qtcharts
- name: Configure and compile MNE-CPP
run: |
qmake -r MNECPP_CONFIG+=withCodeCov MNECPP_CONFIG+=noApplications MNECPP_CONFIG+=noExamples
make -j4
- name: Run tests and upload results to Codecov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
QTEST_FUNCTION_TIMEOUT: 900000
run: |
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/lib
git clone https://github.com/mne-tools/mne-cpp-test-data.git ./bin/mne-cpp-test-data
for test in ./bin/test_*;
do
# Run all tests and call gcov on all cpp files after each test run. Then upload to codecov for every test run.
# Codecov is able to process multiple uploads and merge them as soon as the CI job is done.
echo ">> Starting $test"
$test
find ./libraries -type f -name "*.cpp" -execdir gcov {} \; > /dev/null
# Hide codecov output since it corrupts the log too much
codecov > /dev/null
done
Doxygen:
runs-on: ubuntu-16.04
needs: CreateRelease
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Install Qt Dev Tools, Doxygen and Graphviz
run: |
sudo apt-get update -qq
sudo apt-get install -qq qttools5-dev-tools doxygen graphviz
- name: Run Doxygen and package result
run: |
git fetch --all
git checkout origin/master
cd doc/doxygen
doxygen mne-cpp_doxyfile
- name: Setup Github credentials
uses: fusion-engineering/setup-git-credentials@v2
with:
credentials: ${{secrets.GIT_CREDENTIALS}}
- name: Deploy qch docu data base with stable release on Github
if: endsWith(github.ref, 'master') == false
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: doc/doxygen/qt-creator_doc/mne-cpp.qch
asset_name: mne-cpp-doc-qtcreator.qch
tag: ${{ github.ref }}
overwrite: true
- name: Deploy qch docu data base with dev release on Github
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: doc/doxygen/qt-creator_doc/mne-cpp.qch
asset_name: mne-cpp-doc-qtcreator.qch
tag: dev_build
overwrite: true
- name: Update documentation at Github pages
run: |
cd doc/doxygen
git config --global user.email lorenzesch@hotmail.com
git config --global user.name LorenzE
git clone -b gh-pages https://github.com/mne-cpp/doxygen-api gh-pages
cd gh-pages
# Remove all files first
git rm * -r
git commit --amend -a -m 'Update docu' --allow-empty
touch .nojekyll
# Copy doxygen files
cp -r ../html/* .
# Add all new files, commit and push
git add *
git add .nojekyll
git commit --amend -a -m 'Update docu'
git push -f --all
gh-pages:
# Only run for dev releases
if: endsWith(github.ref, 'master') == true
runs-on: ubuntu-latest
needs: CreateRelease
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Setup Github credentials
uses: fusion-engineering/setup-git-credentials@v2
with:
credentials: ${{secrets.GIT_CREDENTIALS}}
- name: Clone doc/gh-pages into gh-pages branch
run: |
git config --global user.email lorenzesch@hotmail.com
git config --global user.name LorenzE
git clone -b master --single-branch https://github.com/mne-cpp/mne-cpp.github.io.git
cd mne-cpp.github.io
# Remove all files first
git rm * -r
git commit --amend -a -m 'Update docu' --allow-empty
cd ..
cp -RT doc/gh-pages mne-cpp.github.io
cd mne-cpp.github.io
git add .
git commit --amend -a -m 'Update docu'
git push -f --all
WebAssembly:
# Only run for dev releases
if: endsWith(github.ref, 'master') == true
runs-on: ubuntu-latest
needs: CreateRelease
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Setup emscripten compiler
run: |
cd ..
# Get the emsdk repo
git clone https://github.com/emscripten-core/emsdk.git
# Enter that directory and pull
cd emsdk
git pull
# Download and install the latest SDK tools.
./emsdk install 1.39.7
- name: Compile wasm Qt version
run: |
cd ..
# Make the "latest" emscripten SDK "active" for the current user.
./emsdk/emsdk activate 1.39.7
# Activate PATH and other environment variables in the current terminal
source ./emsdk/emsdk_env.sh
# Clone Qt5 repo
git clone https://code.qt.io/qt/qt5.git -b 5.15.1
cd qt5
./init-repository -f --module-subset=qtbase,qtcharts,qtsvg
# Configure Qt5
./configure -xplatform wasm-emscripten -feature-thread -skip webengine -nomake tests -nomake examples -no-dbus -no-ssl -no-pch -opensource -confirm-license -prefix "$PWD/../Qt5_binaries"
make module-qtbase module-qtsvg module-qtcharts -j4
make install -j4
- name: Configure and compile MNE-CPP
run: |
cd ..
# Make the "latest" emscripten SDK "active" for the current user.
./emsdk/emsdk activate 1.39.7
# Activate PATH and other environment variables in the current terminal
source ./emsdk/emsdk_env.sh
# Compile MNE-CPP
cd mne-cpp
../Qt5_binaries/bin/qmake -r MNECPP_CONFIG=wasm
make -j4
- name: Setup Github credentials
uses: fusion-engineering/setup-git-credentials@v2
with:
credentials: ${{secrets.GIT_CREDENTIALS}}
- name: Clone and update mne-cpp/wasm:gh-pages
run: |
# Delete folders which we do not want to ship
rm -r bin/mne_analyze_plugins
rm -r bin/mne-cpp-test-data
rm -r bin/MNE-sample-data
# Replace logo
cp -RT tools/design/logos/qtlogo.svg bin/qtlogo.svg
# Clone repo and update with new wasm versions
git config --global user.email lorenzesch@hotmail.com
git config --global user.name LorenzE
git clone -b gh-pages --single-branch https://github.com/mne-cpp/wasm.git
cd wasm
# Remove all files first
git rm * -r
git commit --amend -a -m 'Update wasm builds' --allow-empty
# Copy wasm files
cd ..
cp -RT bin wasm
cd wasm
git add .
git commit --amend -a -m 'Update wasm builds'
git push -f --all