Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
wildum committed Oct 12, 2023
1 parent 8b02e34 commit d1bf543
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@ jobs:
run: echo "OTEL_EXPORTER_ENDPOINT=http://172.17.0.1:8080" >> $GITHUB_ENV
- name: Run tests
run: |
top -b -n 10 -d 5 > top_output.txt &
TOP_PID=$!
vmstat 5 10 > vmstat_output.txt &
VMSTAT_PID=$!
cd integration-tests/tests
./run-integration-tests.sh
kill $TOP_PID
kill $VMSTAT_PID
- name: Display vmstat output
run: cat vmstat_output.txt

0 comments on commit d1bf543

Please sign in to comment.