2022-04-22 07:18:21 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-12-20 08:38:58 +00:00
|
|
|
mkdir -p internal/frostfs/services/tree 2>/dev/null
|
2022-04-22 07:18:21 +00:00
|
|
|
|
2022-10-14 10:06:03 +00:00
|
|
|
REVISION="feaa9eace7098c343598bf08fb50746a1e8d2deb"
|
2022-04-22 07:18:21 +00:00
|
|
|
|
|
|
|
echo "tree service revision ${REVISION}"
|
|
|
|
|
2023-03-09 11:57:46 +00:00
|
|
|
# regexp below find all link to source code files which end with ".pb.go" and retrieve the file names
|
|
|
|
# we use `[^.]*` as non greedy workaround for `.*`
|
|
|
|
FILES=$(curl -s https://git.frostfs.info/TrueCloudLab/frostfs-node/src/commit/${REVISION}/pkg/services/tree | sed -n "s,.*\"/TrueCloudLab/frostfs-node/src/commit/${REVISION}/pkg/services/tree/\([^.]*\.pb\.go\)\".*,\1,p")
|
2022-04-22 07:18:21 +00:00
|
|
|
|
|
|
|
for file in $FILES; do
|
2022-05-18 13:39:26 +00:00
|
|
|
if [[ $file == *"neofs"* ]]; then
|
|
|
|
echo "skip '$file'"
|
|
|
|
continue
|
|
|
|
else
|
|
|
|
echo "sync '$file' in tree service"
|
|
|
|
fi
|
2023-03-09 11:57:46 +00:00
|
|
|
curl -s "https://git.frostfs.info/TrueCloudLab/frostfs-node/raw/commit/${REVISION}/pkg/services/tree/${file}" -o "./internal/frostfs/services/tree/${file}"
|
2022-04-22 07:18:21 +00:00
|
|
|
done
|