File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -62,27 +62,22 @@ jobs:
62
62
uses : aminya/setup-cpp@17c11551771948abc5752bbf3183482567c7caf0 # v1.1.1
63
63
with :
64
64
clang-tidy : 20.1.8
65
-
66
- - name : Clear Python cache
67
- run : sudo rm -rf /__t/Python
68
65
69
66
- name : Setup Python env
70
67
uses : actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
71
68
with :
72
69
python-version : ' 3.12'
73
- cache : ' pip'
74
- cache-dependency-path : ' code-lint-tools/llvm/utils/git/requirements_linting.txt'
75
70
76
71
- name : Install Python dependencies
77
- run : pip install -r code-lint-tools/llvm/utils/git/requirements_linting.txt
72
+ run : python3 -m pip install -r code-lint-tools/llvm/utils/git/requirements_linting.txt
78
73
79
74
# TODO: create special mapping for 'codegen' targets, for now build predefined set
80
75
# TODO: add entrypoint in 'compute_projects.py' that only adds a project and its direct dependencies
81
76
- name : Configure and CodeGen
82
77
run : |
83
78
git config --global --add safe.directory '*'
84
79
85
- source <(git diff --name-only HEAD~1...HEAD | python3 .ci/compute_projects.py)
80
+ . <(git diff --name-only HEAD~1...HEAD | python3 .ci/compute_projects.py)
86
81
87
82
if [[ "${projects_to_build}" == "" ]]; then
88
83
echo "No projects to analyze"
You can’t perform that action at this time.
0 commit comments