Skip to content

Commit e6ebc52

Browse files
committed
cicd: fix metrics script
1 parent d7bd074 commit e6ebc52

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

github-actions-tests/metrics.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
# default parameters:
66
PG_VERSION="14"
7+
OS="centos:7"
78

89
for i in "$@"
910
do
@@ -22,7 +23,7 @@ case $i in
2223
esac
2324
done
2425

25-
METRICS_FILE = "/mamonsu/github-actions-tests/sources/metrics-linux-${PG_VERSION}.txt"
26+
METRICS_FILE="/mamonsu/github-actions-tests/sources/metrics-linux-${PG_VERSION}.txt"
2627

2728
echo && echo
2829
echo "================================================================================================================="
@@ -62,6 +63,6 @@ while read metric; do
6263
echo "---> ERROR: Cannot found metric $metric"
6364
# exit 11
6465
fi
65-
done <${METRICS_FILE}
66+
done <"${METRICS_FILE}"
6667

6768
echo && echo

0 commit comments

Comments
 (0)