-
Notifications
You must be signed in to change notification settings - Fork 141
594 lines (571 loc) · 21.7 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
name: Linux|MacOS|Win|WASM
on:
push:
tags:
- v0.*
branches:
- main
jobs:
CreateRelease:
runs-on: ubuntu-20.04
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Create new branch with the tag's name (stable release only)
if: endsWith(github.ref, 'main') == 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 [email protected]
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: Setup Github credentials (dev release only)
if: endsWith(github.ref, 'main') == 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, 'main') == true
env:
GITHUB_USER: LorenzE
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global user.email [email protected]
git config --global user.name $GITHUB_USER
# Delete current dev_build release remotely.
# 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 remotely.
hub release delete dev_build
# Delete current tag remotely
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-20.04
needs: CreateRelease
steps:
- name: Clone repository
uses: actions/checkout@v3
- 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_5152_static_binaries_linux.tar.gz https://www.dropbox.com/s/tje7jp6tsn2dxdd/qt5_5152_static_binaries_linux.tar.gz?dl=0
mkdir ../Qt5_binaries
tar xvzf qt5_5152_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.2
# 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
# cmake --build build
# cmake --build build
- name: Configure and compile MNE-CPP
run: |
export QT_DIR="$(pwd)/../Qt5_binaries/lib/cmake/Qt5"
export Qt5_DIR="$(pwd)/../Qt5_binaries/lib/cmake/Qt5"
./tools/build_project.bat static
- name: Deploy binaries
run: |
./tools/deploy.bat static pack
- name: Deploy binaries with stable release on Github
if: endsWith(github.ref, 'main') == 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, 'main') == 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@v3
- name: Install Qt
run: |
# Download the pre-built static version of Qt, which was created with the buildqtbinaries.yml workflow
wget -O qt5_5152_static_binaries_macos.tar.gz https://www.dropbox.com/s/ccigarxk40wlxq0/qt5_5152_static_binaries_macos.tar.gz?dl=1
tar xzf qt5_5152_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.2
# 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
# cmake --build build
# cmake --build build
- name: Configure and compile MNE-CPP
run: |
export QT_DIR="$(pwd)/../Qt5_binaries/lib/cmake/Qt5"
export Qt5_DIR="$(pwd)/../Qt5_binaries/lib/cmake/Qt5"
./tools/build_project.bat static
- name: Deploy binaries
run: |
./tools/deploy.bat static pack
- name: Deploy binaries with stable release on Github
if: endsWith(github.ref, 'main') == 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, 'main') == 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@v3
- name: Install Python 3.7 version
uses: actions/setup-python@v4
with:
python-version: '3.7'
architecture: 'x64'
- 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/47s49smjg499gnm/qt5_5152_static_binaries_win.zip?dl=1 -OutFile .\qt5_5152_static_binaries_win.zip
expand-archive -path "qt5_5152_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.2
# 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
# cmake --build build
# 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] } }
$env:QT_DIR += "$PWD\..\Qt5_binaries\lib\cmake\Qt5"
$env:Qt5_DIR += "$PWD\..\Qt5_binaries\lib\cmake\Qt5"
./tools/build_project.bat static
- name: Deploy binaries
run: |
./tools/deploy.bat static pack
- name: Deploy binaries with stable release on Github
if: endsWith(github.ref, 'main') == 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, 'main') == 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-20.04
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Install Python 3.7 version
uses: actions/setup-python@v4
with:
python-version: '3.7'
architecture: 'x64'
- name: Install BrainFlow and LSL submodules
run: |
git submodule update --init src/applications/mne_scan/plugins/brainflowboard/brainflow
git submodule update --init src/applications/mne_scan/plugins/lsladapter/liblsl
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: 5.15.2
modules: qtcharts
- name: Compile BrainFlow submodule
run: |
cd src/applications/mne_scan/plugins/brainflowboard/brainflow
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=../installed -DCMAKE_BUILD_TYPE=Release ..
cmake --build .
- name: Compile LSL submodule
run: |
cd src/applications/mne_scan/plugins/lsladapter/liblsl
mkdir build
cd build
cmake ..
cmake --build .
- name: Configure and compile MNE-CPP
run: |
./tools/build_project.bat
- name: Deploy binaries
run: |
./tools/deploy.bat dynamic pack
- name: Deploy binaries with stable release on Github
if: endsWith(github.ref, 'main') == 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, 'main') == 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
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Install Python 3.7 version
uses: actions/setup-python@v4
with:
python-version: '3.7'
architecture: 'x64'
- name: Install BrainFlow and LSL submodules
run: |
git submodule update --init src/applications/mne_scan/plugins/brainflowboard/brainflow
git submodule update --init src/applications/mne_scan/plugins/lsladapter/liblsl
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: 5.14.2
modules: qtcharts
- name: Compile BrainFlow submodule
run: |
cd src/applications/mne_scan/plugins/brainflowboard/brainflow
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=../installed -DCMAKE_BUILD_TYPE=Release ..
cmake --build .
- name: Compile LSL submodule
run: |
cd src/applications/mne_scan/plugins/lsladapter/liblsl
mkdir build
cd build
cmake ..
cmake --build .
- name: Configure and compile MNE-CPP
run: |
./tools/build_project.bat
- name: Deploy binaries (MacOS)
run: |
./tools/deploy.bat dynamic pack
- name: Deploy binaries with stable release on Github
if: endsWith(github.ref, 'main') == 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, 'main') == 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
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Install Python 3.7 version
uses: actions/setup-python@v4
with:
python-version: '3.7'
architecture: 'x64'
- name: Install BrainFlow and LSL submodules
run: |
git submodule update --init src/applications/mne_scan/plugins/brainflowboard/brainflow
git submodule update --init src/applications/mne_scan/plugins/lsladapter/liblsl
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: 5.15.2
arch: win64_msvc2019_64
modules: qtcharts
- name: Compile BrainFlow submodule
run: |
cd src\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 src\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] } }
./tools/build_project.bat
- name: Deploy binaries (Windows)
run: |
./tools/deploy.bat dynamic pack
- name: Deploy binaries with stable release on Github
if: endsWith(github.ref, 'main') == 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, 'main') == 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, 'main') == true
runs-on: ubuntu-20.04
needs: CreateRelease
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Clone mne-cpp test data
run: git clone https://github.com/mne-tools/mne-cpp-test-data.git resources/data/mne-cpp-test-data
- name: Install Python 3.7 version
uses: actions/setup-python@v4
with:
python-version: '3.7'
architecture: 'x64'
- name: Install Codecov
run: |
sudo pip install codecov
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: 5.15.2
modules: qtcharts
- name: Configure and compile MNE-CPP
run: |
./tools/build_project.bat coverage all
- name: Run tests and upload results to Codecov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
QTEST_FUNCTION_TIMEOUT: 900000
run: |
./tools/test_all.bat verbose withCoverage
Doxygen:
runs-on: ubuntu-20.04
needs: CreateRelease
steps:
- name: Clone repository
uses: actions/checkout@v3
- 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/main
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, 'main') == 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 [email protected]
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, 'main') == true
runs-on: ubuntu-latest
needs: CreateRelease
steps:
- name: Clone repository
uses: actions/checkout@v3
- 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 [email protected]
git config --global user.name LorenzE
git clone -b main --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, 'main') == true
runs-on: ubuntu-latest
needs: CreateRelease
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Install Qt Desktop
uses: jurplel/install-qt-action@v3
with:
aqtversion: '==3.1.*'
py7zrversion: '>=0.20.2'
version: '6.5.0'
host: 'linux'
target: 'desktop'
arch: 'gcc_64'
modules: 'qtcharts'
- name: Install Qt WASM
uses: jurplel/install-qt-action@v3
with:
aqtversion: '==3.1.*'
py7zrversion: '>=0.20.2'
version: '6.5.0'
host: 'linux'
target: 'desktop'
arch: 'wasm_multithread'
modules: 'qtcharts'
- name: Setup and build WASM
run: |
./tools/wasm.sh --emsdk 3.1.25
- 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 out/wasm/apps/mne_analyze_plugins
rm -r resources/data
# Replace logo
cp -RT resources/design/logos/qtlogo.svg bin/qtlogo.svg
# Clone repo and update with new wasm versions
git config --global user.email [email protected]
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 out/wasm/apps wasm
cd wasm
git add .
git commit --amend -a -m 'Update wasm builds'
git push -f --all