-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
package-win.sh
47 lines (41 loc) · 971 Bytes
/
package-win.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env bash
# NOTE: This script is not intended for general uses.
echo 'NOTE: make sure to have removed `-march=native` and `-C target-cpu=native`.'
set -ex
VERSION="$(git describe --tags)"
AKOCHAN_DIR=$HOME/akochan
REVIEWER_DIR=$HOME/akochan-reviewer
OUT_DIR="$(mktemp -d)"
OUT_FILE="akochan-reviewer-$VERSION-windows-x86_64.zip"
pushd "$AKOCHAN_DIR"
pushd ai_src
make -j$(nproc)
popd
make -j$(nproc)
mkdir -p "$OUT_DIR"/akochan
cp -rt "$OUT_DIR"/akochan \
system.exe \
ai.dll \
params \
README.md \
LICENSE \
/ucrt64/bin/libgcc_s_seh-1.dll \
/ucrt64/bin/libgomp-1.dll \
/ucrt64/bin/libstdc++-6.dll \
/ucrt64/bin/libwinpthread-1.dll
popd
pushd "$REVIEWER_DIR"
cargo build --release
cp -rt "$OUT_DIR" \
target/release/akochan-reviewer.exe \
tactics.json \
README.md \
LICENSE
popd
7z a -tzip "$OUT_FILE" "$OUT_DIR"/*
rm -rf "$OUT_DIR"
set +x
echo '## SHA256SUMS
```plain
'"$(sha256sum "$OUT_FILE")"'
```'