-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sh
executable file
·29 lines (20 loc) · 1.04 KB
/
build.sh
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
#!/bin/bash
set -euo pipefail
echo '*************************************************'
echo '*** ***'
echo '*** Building Back office ***'
echo '*** ***'
echo '*************************************************'
( npm install --no-audit && npm run-script build )
echo '*************************************************'
echo '*** ***'
echo '*** Building processing CGI ***'
echo '*** ***'
echo '*************************************************'
(cd fitsviewer && cmake . && make -j2 )
echo '*************************************************'
echo '*** ***'
echo '*** Building UI ***'
echo '*** ***'
echo '*************************************************'
( cd ui && npm install --no-audit && FAST_COMPILE=true npm run-script build)