Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Perf/voting only #10

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixing output dir removing spaces from test type
mike dupont committed Oct 22, 2024
commit 1a6adaad17e0a7e5e1cbff5034562d79e20920c7
4 changes: 3 additions & 1 deletion .github/workflows/build-action.yml
Original file line number Diff line number Diff line change
@@ -113,7 +113,7 @@ jobs:
run: |
#!/bin/bash
MODIFIED_BRANCH_NAME=${BRANCH_NAME/\//-}
MODIFIED_TEST_TYPE=${TEST_TYPE/\//-}
MODIFIED_TEST_TYPE=${TEST_TYPE//[\/ ]/-}
OUTPUT_DIR="profile/profile-data/${MODIFIED_BRANCH_NAME}"
OUTPUT_TEST_DIR="${OUTPUT_DIR}/profile-data-${MODIFIED_TEST_TYPE}-${{ matrix.perf }}-${{ matrix.node_version }}"
OUTPUT_TEST_NAME="profile-data-${MODIFIED_TEST_TYPE}-${{ matrix.perf }}-${{ matrix.node_version }}"
@@ -139,6 +139,8 @@ jobs:
mv Heap.*.heapprofile "${OUTPUT_TEST_DIR}" || echo ok
mv CPU.*.cpuprofile "${OUTPUT_TEST_DIR}" || echo ok
find -name \*log
find -name \*.cpuprofile
find -name \*.heapprofile
continue-on-error: true

- name: Upload test results