-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathHydrunfile
executable file
·97 lines (70 loc) · 1.87 KB
/
Hydrunfile
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
#!/bin/bash
set -e
# Test CLI
if [ "$1" = "test/cli" ]; then
# Install native dependencies
apt update
apt install -y make git protobuf-compiler
# Configure Git
git config --global --add safe.directory '*'
# Generate dependencies
make depend/cli
# Run tests
make test/cli
exit 0
fi
# Test PWA
if [ "$1" = "test/pwa" ]; then
# Install native dependencies
apt update
apt install -y make git protobuf-compiler
# Configure Git
git config --global --add safe.directory '*'
# Generate dependencies
make depend/pwa
# Run tests
make test/pwa
exit 0
fi
# Build CLI
if [ "$1" = "build/cli" ]; then
# Install native dependencies
apt update
apt install -y curl make git protobuf-compiler
# Install bagop
curl -L -o /tmp/bagop "https://github.com/pojntfx/bagop/releases/latest/download/bagop.linux-$(uname -m)"
install /tmp/bagop /usr/local/bin
# Configure Git
git config --global --add safe.directory '*'
# Generate dependencies
make depend/cli
# Build
CGO_ENABLED=0 bagop -j "$(nproc)" -b "$2" -x '(android/*|ios/*|plan9/*|aix/*|linux/loong64|freebsd/riscv64|wasip1/wasm)' -p "make build/cli/$2 DST=\$DST" -d out
exit 0
fi
# Build PWA
if [ "$1" = "build/pwa" ]; then
# Install native dependencies
apt update
apt install -y make git protobuf-compiler
# Configure Git
git config --global --add safe.directory '*'
# Generate dependencies
make depend/pwa
# Build
make build/pwa
exit 0
fi
# Build PWA (GitHub pages)
if [ "$1" = "build/pwa-github-pages" ]; then
# Install native dependencies
apt update
apt install -y make git protobuf-compiler
# Configure Git
git config --global --add safe.directory '*'
# Generate dependencies
make depend/pwa
# Build
make build/pwa-github-pages
exit 0
fi