2023-06-06 06:27:28 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-08-02 07:54:37 +00:00
|
|
|
REVISION="b3695411d907c3c65485bab04f9ff8479a72906b"
|
2023-06-06 06:27:28 +00:00
|
|
|
|
|
|
|
echo "tree service revision ${REVISION}"
|
|
|
|
|
|
|
|
# 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")
|
|
|
|
|
|
|
|
for file in $FILES; do
|
|
|
|
if [[ $file == *"frostfs"* ]]; then
|
|
|
|
echo "skip '$file'"
|
|
|
|
continue
|
|
|
|
else
|
|
|
|
echo "sync '$file' in tree service"
|
|
|
|
fi
|
|
|
|
curl -s "https://git.frostfs.info/TrueCloudLab/frostfs-node/raw/commit/${REVISION}/pkg/services/tree/${file}" -o "./pool/tree/service/${file}"
|
|
|
|
done
|