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

chore(ci) remove tj-actions/changed-files #202

Merged
merged 3 commits into from
Mar 15, 2025
Merged
Changes from all commits
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
5 changes: 3 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v44
run: |
echo "all_changed_files=$(git diff-tree --no-commit-id --name-only -r HEAD | tr '\n' ' ')" >> $GITHUB_OUTPUT

- name: Run Valgrind
if: contains(matrix.extras, 'valgrind')
Expand All @@ -246,7 +247,7 @@ jobs:
fi

echo "Files to run for valgrind: $files_to_test"
if [ -z "$files_to_test" ]; then return; fi
if [ -z "$files_to_test" ]; then exit 0; fi

export LD_LIBRARY_PATH=$LUAJIT_LIB:$LD_LIBRARY_PATH
export TEST_NGINX_USE_VALGRIND=1 TEST_NGINX_VALGRIND='--num-callers=100 -q --tool=memcheck --leak-check=full --show-possibly-lost=no --gen-suppressions=all --suppressions=valgrind.suppress --track-origins=yes' TEST_NGINX_TIMEOUT=60 TEST_NGINX_SLEEP=1
Expand Down