From a030f1cb50f659128c76958c79644fc5b82ffcad Mon Sep 17 00:00:00 2001 From: peterstone2017 <12449837+YunchuWang@users.noreply.github.com> Date: Tue, 9 Jan 2024 10:32:39 -0500 Subject: [PATCH] Update perf-testing-setup.yml --- .github/workflows/perf-testing-setup.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/perf-testing-setup.yml b/.github/workflows/perf-testing-setup.yml index 2297aa92..e3212b74 100644 --- a/.github/workflows/perf-testing-setup.yml +++ b/.github/workflows/perf-testing-setup.yml @@ -79,15 +79,15 @@ jobs: sleep 2 py_spy_id=$(docker exec $container_id sh -c "ps aux | grep '[p]y-spy record'" | awk '{print $2}') echo "Py-Spy pid is $py_spy_id" - chmod 777 $GITHUB_WORKSPACE/home - mkdir -p $GITHUB_WORKSPACE/home/profiling_reports - docker cp $container_id:/home/profiling_reports/helloperf.svg /home/profiling_reports - ls -ltr /home/profiling_reports + mkdir -p $GITHUB_WORKSPACE/profiling_reports + chmod 777 $GITHUB_WORKSPACE/profiling_reports + docker cp $container_id:/home/profiling_reports/helloperf.svg /profiling_reports + ls -ltr /profiling_reports - name: Upload SVG to Azure Blob Storage uses: bacongobbler/azure-blob-storage-upload@v3.0.0 with: - source_dir: 'home/profiling_reports' # Directory containing the helloperf.svg file + source_dir: 'profiling_reports' # Directory containing the helloperf.svg file container_name: 'profiling' connection_string: ${{ secrets.AZURE_STORAGE_CONNECTION_STRING }} sync: 'false'