-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f11df87
commit a030f1c
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
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' | ||
|