Skip to content

Commit

Permalink
build: fix output
Browse files Browse the repository at this point in the history
  • Loading branch information
akikanellis committed Apr 4, 2024
1 parent 48e1c39 commit a4a2022
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ jobs:
run: pip install glances

- name: Start Glances in background
id: start-glances
run: |
glances --export csv --export-csv-file glances.csv --quiet &
echo $! > GLANCES_PID
echo "pid=$!" >> "$GITHUB_OUTPUT"
- name: Free disk space
uses: jlumbroso/free-disk-space@v1.3.1
Expand Down Expand Up @@ -54,7 +55,7 @@ jobs:
run: just install-dependencies

- name: Stop Glances
run: kill $(cat GLANCES_PID)
run: kill ${{ steps.start-glances.outputs.pid }}

- name: Upload Glances CSV
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit a4a2022

Please sign in to comment.