Fix metrics push.

This commit is contained in:
Will Rouesnel 2018-11-11 21:16:46 +11:00
parent 5bd5c591be
commit fd4691cbc0
No known key found for this signature in database
GPG Key ID: 72DC65802A1091C5
2 changed files with 2 additions and 6 deletions

View File

@ -22,7 +22,7 @@ after_success:
; docker push wrouesnel/postgres_exporter:$TRAVIS_TAG ; fi ; docker push wrouesnel/postgres_exporter:$TRAVIS_TAG ; fi
- if [ "$TRAVIS_BRANCH" == "master" ]; then docker push wrouesnel/postgres_exporter - if [ "$TRAVIS_BRANCH" == "master" ]; then docker push wrouesnel/postgres_exporter
; fi ; fi
- ./postgres-metrics-get-changes.sh .assets-branch - ./postgres-metrics-get-changes.sh .assets-branch/metriclists
- if [ "$TRAVIS_BRANCH" == "support_shell_fixes" ]; then ./gh-metrics-push.sh ; fi - if [ "$TRAVIS_BRANCH" == "support_shell_fixes" ]; then ./gh-metrics-push.sh ; fi
env: env:
global: global:

View File

@ -16,17 +16,13 @@ mkdir -p "$METRICS_DIR/"
# Remove old files so we spot deletions # Remove old files so we spot deletions
rm -f "$METRICS_DIR/.*.unique" rm -f "$METRICS_DIR/.*.unique"
ls -la
# Copy new files # Copy new files
cp -f -t "$METRICS_DIR/" ./.metrics.*.prom.unique || exit 1 cp -f -t "$METRICS_DIR/" ./.metrics.*.prom.unique || exit 1
# Enter the assets dir and push. # Enter the assets dir and push.
cd "$ASSETS_DIR" || exit 1 cd "$ASSETS_DIR" || exit 1
ls -laR git add "metriclists" || exit 1
git add "$METRICS_DIR" || exit 1
git commit -m "Added unique metrics for build from $version" || exit 1 git commit -m "Added unique metrics for build from $version" || exit 1
git push origin "$GIT_ASSETS_BRANCH" || exit 1 git push origin "$GIT_ASSETS_BRANCH" || exit 1