-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathentrypoint.sh
executable file
·53 lines (40 loc) · 1.84 KB
/
entrypoint.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
48
49
50
51
52
53
#!/usr/bin/env bash
# Данный скрипт клонирует репозиторий c официальными proto файлами,
# и на их основе генерирует исходных код клиента для Golang
# в директории /opt/client
set -e
output_dir=/opt
# Убедимся, что компилятор Golang установлен
which go
go version
go env
# Убедимся, что утилита protoc установлена
which protoc
protoc --version
# Клонируем исходный код протофайлов
cd "$output_dir"
git clone https://github.com/RussianInvestments/investAPI.git
ls -l "$output_dir/investAPI/"
# Смотрим, крайний коммит, на основе которого мы будет генерировать исходный код клиента
cd "$output_dir/investAPI"
git log -1
# Сохраняем хэш коммита
githash=$(git log --format='%H' -1)
# Генерируем код модуля
cd "$output_dir/investAPI/src/docs/contracts"
protoc \
--proto_path=/usr/bin/include/google/ \
--proto_path="$output_dir/investAPI/src/docs/contracts" \
--go_out="$output_dir/client" \
--go_opt=paths=source_relative \
--go-grpc_opt=paths=source_relative \
--go-grpc_out="$output_dir/client" \
*.proto
# Генерируем ленивку с хэшем коммита, из которого был сгенерирован клиент
rm -f "$output_dir/client/version.go"
cp "$output_dir/client/version.tpl" "$output_dir/client/version.go"
sed -i "s/development/$githash/g" "$output_dir/client/version.go"
# Смотрим, что получилось
ls -l "$output_dir/client/"
# Сообщаем, что получилось
echo "Код сгенерирован из коммита https://github.com/RussianInvestments/investAPI/commit/$githash"