Skip to content

Commit

Permalink
build: use absolute path
Browse files Browse the repository at this point in the history
  • Loading branch information
akikanellis committed Apr 4, 2024
1 parent 6145520 commit b5cef9c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ jobs:
- name: Start Glances in background
id: start-glances
run: |
glances --export csv --export-csv-file glances.csv --quiet &
CSV_FILE=$(pwd)/glances.csv
glances --export=csv --export-csv-file=$CSV_FILE --quiet &
echo "pid=$!" >> "$GITHUB_OUTPUT"
echo "csv_path=$CSV_FILE" >> "$GITHUB_OUTPUT"
- name: Free disk space
uses: jlumbroso/[email protected]
Expand Down Expand Up @@ -61,7 +65,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: glances-metrics
path: ./glances.csv
path: ${{ steps.start-glances.outputs.csv_path }}

# test-parallel-false:
# name: "Test - Parallel: false"
Expand Down

0 comments on commit b5cef9c

Please sign in to comment.