about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-08-16 18:22:33 +0200
committerGitHub <noreply@github.com>2019-08-16 18:22:33 +0200
commit4c3f21b47d05a4f8d8e3f680ac03f2997375ece3 (patch)
tree720c158f350c4174fef368d9f2dee91e2b3e75af
parentf40a2807a9a017179f0c2224cb991a370554c7c1 (diff)
parentd50a9b189e05c77834d2226a84d3cf02c02fd3a1 (diff)
downloadrust-4c3f21b47d05a4f8d8e3f680ac03f2997375ece3.tar.gz
rust-4c3f21b47d05a4f8d8e3f680ac03f2997375ece3.zip
Rollup merge of #63634 - pietroalbini:cpu-stats-name, r=alexcrichton
ci: properly set the job name in CPU stats

r? @alexcrichton
-rw-r--r--src/ci/azure-pipelines/steps/run.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ci/azure-pipelines/steps/run.yml b/src/ci/azure-pipelines/steps/run.yml
index ca32888b74c..ac6b344a45e 100644
--- a/src/ci/azure-pipelines/steps/run.yml
+++ b/src/ci/azure-pipelines/steps/run.yml
@@ -199,7 +199,7 @@ steps:
 # Upload CPU usage statistics that we've been gathering this whole time. Always
 # execute this step in case we want to inspect failed builds, but don't let
 # errors here ever fail the build since this is just informational.
-- bash: aws s3 cp --acl public-read cpu-usage.csv s3://$DEPLOY_BUCKET/rustc-builds/$BUILD_SOURCEVERSION/cpu-$SYSTEM_JOBNAME.csv
+- bash: aws s3 cp --acl public-read cpu-usage.csv s3://$DEPLOY_BUCKET/rustc-builds/$BUILD_SOURCEVERSION/cpu-$CI_JOB_NAME.csv
   env:
     AWS_SECRET_ACCESS_KEY: $(AWS_SECRET_ACCESS_KEY)
   condition: variables['AWS_SECRET_ACCESS_KEY']