From 71abd00f54b36bb82dd6a0f496415b7c5e0acfd1 Mon Sep 17 00:00:00 2001 From: Drew Scoggins Date: Thu, 19 Jan 2017 10:57:26 -0800 Subject: [PATCH] Add mkdir for CoreFx directory In PR 8997 I accidentally removed the mkdir that creates the corefx directory for us to copy the test zip into. I did this when I was adding Https to the URLs that we use to download the information from Jenkins. This adds back that bit. Commit migrated from https://github.com/dotnet/coreclr/commit/a58a4fd513a584cb6f92f0504a142327de6390e8 --- src/coreclr/tests/scripts/perf-prep.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/coreclr/tests/scripts/perf-prep.sh b/src/coreclr/tests/scripts/perf-prep.sh index cf857ea..3f16f38 100755 --- a/src/coreclr/tests/scripts/perf-prep.sh +++ b/src/coreclr/tests/scripts/perf-prep.sh @@ -62,6 +62,7 @@ python3.5 ./tests/scripts/Microsoft.BenchView.JSONFormat/tools/machinedata.py curl https://ci.dot.net/job/$perfBranch/job/master/job/release_windows_nt/lastSuccessfulBuild/artifact/bin/tests/tests.zip -o tests.zip # Corefx components. We now have full stack builds on all distros we test here, so we can copy straight from CoreFX jobs. +mkdir corefx curl https://ci.dot.net/job/dotnet_corefx/job/master/job/ubuntu14.04_release/lastSuccessfulBuild/artifact/bin/build.tar.gz -o ./corefx/build.tar.gz # Unpack the corefx binaries -- 2.7.4