From aca2a1a257b1e38b7ad406a9f0eece7149e17249 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Wed, 29 Apr 2020 17:35:23 +0200 Subject: [PATCH] [devops] Use a more restricted glob to find directories with sample data in. Fixes xamarin/maccore#2202. (#8465) The previous pattern would match the output files we created from processing these directories, and somehow the pattern would match such a file (even though the pattern should only be executed before doing any processing, when those files don't exist yet, so I don't know exactly why this is happening), leading us to try to process those files as if they were directories with sample data in, with the predictable (disastrous) result. Fixes https://github.com/xamarin/maccore/issues/2202. --- tools/devops/push-performance-data.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/devops/push-performance-data.sh b/tools/devops/push-performance-data.sh index 801f3341e0..0ab66ed01a 100755 --- a/tools/devops/push-performance-data.sh +++ b/tools/devops/push-performance-data.sh @@ -16,7 +16,7 @@ cd "$DIR" # the xml from all the bots together into a single enormous xml file, because # it'll be close to GitHub's size limit per file (limit is 100mb, the enormous # xml file would be ~80mb now), and might very well pass that one day. -for job in *-*-*-*-*; do +for job in ????????-????-????-????-????????????; do { echo '' echo ''